Skip to content

Commit

Permalink
fix: use conventional commits for releases (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
acodeninja authored Sep 9, 2024
1 parent b33bcd5 commit 9ef76c9
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,18 @@
export default {
branches: ['main'],
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
[
'@semantic-release/commit-analyzer',
{
preset: 'conventionalcommits',
},
],
[
'@semantic-release/release-notes-generator',
{
preset: 'conventionalcommits',
},
],
'@semantic-release/github',
'@semantic-release/npm',
],
Expand Down

0 comments on commit 9ef76c9

Please sign in to comment.