blob: 3613a4a74c701fc3d6fc06f454f826f5bd3272e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
"hooks": {
"before:init": [
"npm run lint-fe",
"npm run test-fe",
"cd frontend && npm run validate-json && npm run build"
],
"before:release": [
"cd frontend && npx 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"
}
}
}
|