Files
adyen-node-api-library/.release-it.json
2020-08-05 13:13:27 +02:00

24 lines
605 B
JSON

{
"git": {
"tagName": "v${version}",
"changelog": "npx auto-changelog --hide-credit --stdout --commit-limit false --unreleased-only -t keepachangelog",
"commitMessage": "Release ${version}",
"tag": true,
"requireCleanWorkingDir": false
},
"github": {
"release": true,
"releaseName": "Release ${version}"
},
"hooks": {
"before:init": [
"npm run lint",
"npm run test"
],
"after:bump": [
"npm run build",
"npx auto-changelog -p"
],
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
}
}