mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-10 17:04:49 +08:00
31 lines
676 B
JSON
31 lines
676 B
JSON
{
|
|
"hooks": {
|
|
"before:init": [
|
|
"npm run lint-fe",
|
|
"npm run test-fe",
|
|
"cd frontend && npm run validate-json && npm run build"
|
|
],
|
|
"before:release": [
|
|
"cd frontend && firebase deploy -P live --only hosting",
|
|
"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"
|
|
}
|
|
}
|
|
}
|