monkeytype/.release-it.json

29 lines
608 B
JSON
Raw Normal View History

2023-08-11 17:21:38 +08:00
{
2023-08-11 20:22:26 +08:00
"hooks": {
"before:init": ["npm run lint", "npm run test-be"],
"before:release": [
"sh ./bin/deployBackend.sh",
"cd frontend && npm run deploy-live",
"sh ./bin/purgeCfCache.sh"
]
},
2023-08-11 17:21:38 +08:00
"git": {
2023-08-12 03:23:26 +08:00
"commitMessage": "chore: release v${version}",
2023-09-25 21:15:45 +08:00
"requireCleanWorkingDir": false,
"changelog": "node bin/buildChangelog.mjs"
2023-08-11 17:21:38 +08:00
},
"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"
}
2023-08-11 17:21:38 +08:00
}
}