Skip to content

Commit

Permalink
👷 Update package.json and add release.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
이재민 committed Jan 27, 2024
1 parent b644d86 commit 0467238
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
5 changes: 0 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,6 @@
"test:integration": "playwright test",
"test:unit": "vitest"
},
"release": {
"branches": [
"main"
]
},
"devDependencies": {
"@playwright/test": "^1.28.1",
"@semantic-release/changelog": "^6.0.3",
Expand Down
14 changes: 14 additions & 0 deletions release.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/**
* @type {import('semantic-release').GlobalConfig}
*/
export default {
branches: ['main'],
tagFormat: 'v${2.0.1}',
plugins: [
'@semantic-release/git',
{
assets: 'package.json',
message: 'chore(release): ${nextRelease.version} [skip ci]\\n\\n${nextRelease.notes}'
}
]
};

0 comments on commit 0467238

Please sign in to comment.