monkeytype/.release-it-fe.json
2024-02-08 13:51:02 +01:00

32 lines
644 B
JSON

{
"hooks": {
"before:init": [
"npm run lint-fe",
"npm run test-fe",
"cd frontend && npx gulp build-production"
],
"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"
}
}
}