monkeytype/.release-it-fe.json
2023-10-03 13:15:56 +01:00

28 lines
554 B
JSON

{
"hooks": {
"before:init": ["npm run lint"],
"before:release": [
"cd frontend && npm run deploy-live",
"sh ./bin/purgeCfCache.sh"
]
},
"git": {
"commitMessage": "chore: release v${version}",
"requireCleanWorkingDir": false,
"changelog": "node bin/buildChangelog.mjs"
},
"github": {
"release": true
},
"npm": {
"publish": false,
"ignoreVersion": true
},
"plugins": {
"@csmith/release-it-calver-plugin": {
"format": "yy.ww.minor",
"increment": "calendar.minor"
}
}
}