Files
mes-ui-d2/.releaserc.js

32 lines
722 B
JavaScript
Raw Normal View History

2020-04-18 21:47:07 +08:00
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 [Conventional Commits](https://conventionalcommits.org) for commit guidelines.'
}
],
[
'@semantic-release/npm',
{
npmPublish: false
2020-04-18 21:47:07 +08:00
}
],
'@semantic-release/github',
[
'@semantic-release/git',
{
assets: [
'docs/CHANGELOG.md',
'package.json'
]
2020-04-18 21:47:07 +08:00
}
]
]
}