tianji/.release-it.json

51 lines
1003 B
JSON
Raw Normal View History

2023-12-29 18:12:53 +00:00
{
"github": {
"release": true
},
"git": {
2024-06-21 13:03:47 +00:00
"commitMessage": "chore: release v${version}",
"tag": true,
"tagName": "v${version}"
2023-12-29 18:12:53 +00:00
},
"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"
},
2023-12-29 18:12:53 +00:00
{
"type": "chore",
"section": "Others"
}
]
}
}
}
}