Skip to content

Commit

Permalink
Meta: Add release.config.js configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
filiphsps authored Oct 21, 2023
1 parent 48bff18 commit 1322d84
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions release.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
module.exports = {
branches: [
'master'
],
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
[
'@semantic-release/changelog',
{
changelogFile: 'CHANGELOG.md'
}
],
'@semantic-release/npm',
'@semantic-release/github',
[
'@semantic-release/git',
{
assets: ['CHANGELOG.md', 'package.json', 'prettier.json'],
message: 'Release: Bump `package.json` to v${nextRelease.version}.\n\n[skip ci]\n${nextRelease.notes}'
}
]
]
};

0 comments on commit 1322d84

Please sign in to comment.