mirror of
https://github.com/rive-app/rive-react.git
synced 2026-03-13 08:22:30 +08:00
26 lines
658 B
JSON
26 lines
658 B
JSON
{
|
|
"git": {
|
|
"addUntrackedFiles": true,
|
|
"requireCleanWorkingDir": false,
|
|
"commitMessage": "chore: release ${version}",
|
|
"tagName": "v${version}",
|
|
"changelog": "npx auto-changelog --stdout --commit-limit false --unreleased --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs"
|
|
},
|
|
"npm": {
|
|
"publish": true
|
|
},
|
|
"github": {
|
|
"release": true,
|
|
"releaseName": "${version}"
|
|
},
|
|
"hooks": {
|
|
"after:version:bump": [
|
|
"npm run build",
|
|
"npm run setup-builds",
|
|
"npm run setup-packages",
|
|
"npx auto-changelog -p",
|
|
"npm run publish:all"
|
|
]
|
|
}
|
|
}
|