Files
logistics_support_tool/.release-it.json
2025-07-12 16:47:22 -05:00

30 lines
787 B
JSON

{
"git": {
"commitMessage": "chore(release): v${version}",
"tagName": "v${version}",
"requireCleanWorkingDir": true,
"addUntrackedFiles": true
},
"npm": {
"publish": false
},
"hooks": {
"after:release": "node ./scripts/create-gitea-release.js ${version}"
},
"github": false,
"plugins": {
"@release-it/conventional-changelog": {
"preset": "conventionalcommits",
"infile": "CHANGELOG.md",
"config": ".versionrc.json",
"changelogCommand": "conventional-changelog -p conventionalcommits -r 1"
}
},
"gitea": {
"host": "https://${GITEA_URL}",
"tokenRef": "GITEA_TOKEN"
},
"files": ["package.json", "CHANGELOG.md"]
}