Skip to content

Commit

Permalink
feat(release): add release config
Browse files Browse the repository at this point in the history
  • Loading branch information
wise-king-sullyman committed Dec 21, 2022
1 parent e969568 commit 3f1a142
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions release.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module.exports = {
branches: [{ name: 'main', channel: 'prerelease' }],
analyzeCommits: {
preset: 'angular'
},
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
'@semantic-release/github',
['@semantic-release/npm', { pkgRoot: 'dist' }]
],
tagFormat: 'v${version}',
dryRun: true
};

0 comments on commit 3f1a142

Please sign in to comment.