35 lines
820 B
JSON
35 lines
820 B
JSON
{
|
|
"git": {
|
|
"tagName": "v${version}",
|
|
"commitMessage": "chore(release): v${version}",
|
|
"requireBranch": "master"
|
|
},
|
|
"changelogFile": "CHANGELOG.md",
|
|
"github": {
|
|
"release": true,
|
|
"releaseName": "XTerminal v${version}",
|
|
"autoGenerate": true,
|
|
"assets": ["dist/"],
|
|
"comments": true
|
|
},
|
|
"npm": {
|
|
"publish": true,
|
|
"skipChecks": true
|
|
},
|
|
"hooks": {
|
|
"before:init": "git fetch --tags"
|
|
},
|
|
"plugins": {
|
|
"@release-it/conventional-changelog": {
|
|
"infile": "CHANGELOG.md",
|
|
"header": "# Changelog",
|
|
"preset": {
|
|
"name": "conventionalcommits"
|
|
},
|
|
"gitRawCommitOpts": {
|
|
"merge": null
|
|
}
|
|
}
|
|
}
|
|
}
|