tianji/.release-it.json
2024-06-21 21:03:47 +08:00

51 lines
1003 B
JSON

{
"github": {
"release": true
},
"git": {
"commitMessage": "chore: release v${version}",
"tag": true,
"tagName": "v${version}"
},
"npm": {
"publish": false
},
"hooks": {
"after:bump": "echo Version Upgrade Success. checkout more in CHANGELOG"
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "docs",
"section": "Document"
},
{
"type": "refactor",
"section": "Others"
},
{
"type": "perf",
"section": "Others"
},
{
"type": "chore",
"section": "Others"
}
]
}
}
}
}