You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

30 lines
629 B

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.'
}
],
[
'@semantic-release/npm',
{
npmPublish: false
}
],
'@semantic-release/github',
[
'@semantic-release/git',
{
assets: [
'docs/CHANGELOG.md',
'package.json'
]
}
]
]
}