-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: release script maybe fixed? remove TS-node config this time it should be fixed chore(release): 0.1.1 I think we fixed that CI build
- Loading branch information
1 parent
a330562
commit b7b3a51
Showing
8 changed files
with
2,769 additions
and
1,292 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
## [0.1.1](https://github.com/createdbymahmood/pixelsmithy/compare/d346a46a5c8c64376230068dc7e8a307b930e3e8...0.1.1) (2024-02-03) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* :green_heart: fix release script ([befb372](https://github.com/createdbymahmood/pixelsmithy/commit/befb372fded479ff1f1926efc4d673eaf8ccfbd9)) | ||
|
||
|
||
### Features | ||
|
||
* :construction_worker: setup release workflow ([a330562](https://github.com/createdbymahmood/pixelsmithy/commit/a330562ea02ded420a31665e58d4f5350cd63578)) | ||
* :tada: setup the project ([d346a46](https://github.com/createdbymahmood/pixelsmithy/commit/d346a46a5c8c64376230068dc7e8a307b930e3e8)) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
module.exports = { | ||
branches: [ | ||
"main", // Release from main branch | ||
], | ||
plugins: [ | ||
[ | ||
"@semantic-release/commit-analyzer", | ||
{ | ||
releaseRules: [ | ||
// Define release types based on commit messages | ||
{ type: "feat", release: "minor" }, | ||
{ type: "fix", release: "patch" }, | ||
{ type: "perf", release: "patch" }, | ||
{ type: "chore", release: "patch" }, | ||
{ type: "docs", release: "patch" }, | ||
{ type: "refactor", release: "patch" }, | ||
{ type: "test", release: "patch" }, | ||
{ type: "build", release: "patch" }, | ||
{ type: "ci", release: "patch" }, | ||
], | ||
}, | ||
], | ||
"@semantic-release/release-notes-generator", | ||
[ | ||
"@semantic-release/changelog", | ||
{ | ||
changelogFile: "CHANGELOG.md", // Path to CHANGELOG file | ||
}, | ||
], | ||
"@semantic-release/npm", | ||
[ | ||
"@semantic-release/github", | ||
{ | ||
assets: ["CHANGELOG.md"], // Include CHANGELOG in releases | ||
}, | ||
], | ||
[ | ||
"@semantic-release/git", | ||
{ | ||
assets: ["package.json", "yarn.lock", "CHANGELOG.md"], | ||
message: | ||
"chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}", | ||
}, | ||
], | ||
], | ||
preset: "angular", // Use Angular commit message convention (optional) | ||
tagFormat: "v${version}", // Custom tag format | ||
verifyConditions: [ | ||
// Add verification steps (optional) | ||
"@semantic-release/changelog", | ||
"@semantic-release/npm", | ||
"@semantic-release/github", | ||
"@semantic-release/git", | ||
], | ||
debug: true, // Enable debug mode for troubleshooting | ||
dryRun: false, // Disable dry run (set to true for testing) | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
{ | ||
"compilerOptions": { | ||
"lib": ["dom", "dom.iterable", "esnext"], | ||
"allowJs": true, | ||
"skipLibCheck": true, | ||
"strict": true, | ||
"noEmit": true, | ||
"esModuleInterop": true, | ||
"module": "esnext", | ||
"moduleResolution": "bundler", | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"jsx": "preserve", | ||
"incremental": true, | ||
"plugins": [ | ||
{ | ||
"name": "next" | ||
} | ||
], | ||
"paths": { | ||
"@/*": ["./src/*"] | ||
} | ||
}, | ||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], | ||
"exclude": ["node_modules"] | ||
"compilerOptions": { | ||
"target": "ES5", | ||
"lib": ["dom", "dom.iterable", "esnext"], | ||
"allowJs": true, | ||
"skipLibCheck": true, | ||
"strict": true, | ||
"noEmit": true, | ||
"esModuleInterop": true, | ||
"module": "esnext", | ||
"moduleResolution": "bundler", | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"jsx": "preserve", | ||
"incremental": true, | ||
"plugins": [ | ||
{ | ||
"name": "next" | ||
} | ||
], | ||
"paths": { | ||
"@/*": ["./src/*"] | ||
} | ||
}, | ||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], | ||
"exclude": ["node_modules"] | ||
} |
Oops, something went wrong.