mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-10 08:55:37 +08:00
25 lines
484 B
JSON
25 lines
484 B
JSON
{
|
|
"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"
|
|
]
|
|
},
|
|
"git": {
|
|
"commitMessage": "chore: release v${version}"
|
|
},
|
|
"github": {
|
|
"release": true
|
|
},
|
|
"npm": {
|
|
"publish": false,
|
|
"ignoreVersion": true
|
|
},
|
|
"plugins": {
|
|
"@release-it/conventional-changelog": {
|
|
"preset": "angular"
|
|
}
|
|
}
|
|
}
|