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.
26 lines
557 B
26 lines
557 B
module.exports = {
|
|
git: {
|
|
tagName: 'v${version}',
|
|
commitMessage: 'release: v${version}',
|
|
requireCleanWorkingDir: false,
|
|
requireBranch: 'main',
|
|
},
|
|
hooks: {
|
|
"before:init": ["git pull origin main", "npm run all-check"]
|
|
},
|
|
npm: {
|
|
publish: false,
|
|
},
|
|
prompt: {
|
|
ghRelease: false,
|
|
glRelease: false,
|
|
publish: false,
|
|
},
|
|
plugins: {
|
|
'./conventional-changelog.js': {
|
|
preset: 'angular',
|
|
infile: 'CHANGELOG.md',
|
|
},
|
|
},
|
|
}
|