monkeytype/.release-it-fe.json

32 lines
680 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 && npm run validate-json && npm run build"
],
"before:release": [
2024-07-16 19:42:42 +08:00
"cd frontend && npx firebase deploy -P live --only hosting",
"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"
}
}
}