monkeytype/.release-it-fe.json

32 lines
644 B
JSON
Raw Normal View History

{
"hooks": {
"before:init": [
"npm run lint-fe",
2024-02-08 20:51:02 +08:00
"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}",
2023-09-25 21:15:45 +08:00
"requireCleanWorkingDir": false,
"changelog": "node bin/buildChangelog.mjs"
},
"github": {
"release": true
},
"npm": {
"publish": false,
"ignoreVersion": true
},
"plugins": {
"@csmith/release-it-calver-plugin": {
2023-10-03 20:15:56 +08:00
"format": "yy.ww.minor",
"increment": "calendar.minor"
}
}
}