Skip to content

Commit

Permalink
fix(release.config): add commas
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolethoen authored Mar 21, 2023
1 parent 304403c commit b96ecd0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/module/release.config.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
module.exports = {
branches: [{ name: 'main', channel: 'prerelease' }],
analyzeCommits: {
preset: 'angular'
preset: 'angular',
},
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
'@semantic-release/github',
'@semantic-release/npm'
'@semantic-release/npm',
],
tagFormat: 'v${version}'
tagFormat: 'v${version}',
};

0 comments on commit b96ecd0

Please sign in to comment.