24 lines
661 B
JavaScript
24 lines
661 B
JavaScript
module.exports = {
|
|
branch: 'master',
|
|
plugins: [
|
|
'@semantic-release/commit-analyzer',
|
|
'@semantic-release/release-notes-generator',
|
|
[
|
|
'@semantic-release/changelog',
|
|
{
|
|
changelogFile: 'docs/CHANGELOG.md',
|
|
changelogTitle:
|
|
'# Changelog\n\nAll notable changes to this project will be documented in this file. See\n[Conventional Commits](https://conventionalcommits.org) for commit guidelines.'
|
|
}
|
|
],
|
|
['@semantic-release/npm', { npmPublish: false }],
|
|
'@semantic-release/github',
|
|
[
|
|
'@semantic-release/git',
|
|
{
|
|
assets: ['docs/CHANGELOG.md', 'package.json']
|
|
}
|
|
]
|
|
]
|
|
}
|