2020-04-18 21:47:07 +08:00
|
|
|
module.exports = {
|
|
|
|
|
branch: 'master',
|
|
|
|
|
plugins: [
|
2020-04-22 13:23:53 +08:00
|
|
|
'@semantic-release/commit-analyzer',
|
|
|
|
|
'@semantic-release/release-notes-generator',
|
2020-04-18 21:47:07 +08:00
|
|
|
[
|
|
|
|
|
'@semantic-release/changelog',
|
|
|
|
|
{
|
|
|
|
|
changelogFile: 'docs/CHANGELOG.md',
|
2020-04-19 11:00:47 +08:00
|
|
|
changelogTitle: '# Changelog\n\nAll notable changes to this project will be documented in this file.'
|
2020-04-19 10:57:10 +08:00
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'@semantic-release/npm',
|
|
|
|
|
{
|
|
|
|
|
npmPublish: false
|
2020-04-18 21:47:07 +08:00
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
'@semantic-release/github',
|
|
|
|
|
[
|
|
|
|
|
'@semantic-release/git',
|
|
|
|
|
{
|
2020-04-19 10:57:10 +08:00
|
|
|
assets: [
|
|
|
|
|
'docs/CHANGELOG.md',
|
|
|
|
|
'package.json'
|
|
|
|
|
]
|
2020-04-18 21:47:07 +08:00
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
]
|
|
|
|
|
}
|