blob: bf6dbde6c7d3ecd33fce4c65b8d61a141023bf77 (
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
32
|
{
"git": {
"requireCleanWorkingDir": false,
"changelog": "auto-changelog --stdout",
"tagName": "v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}",
"assets": ["__builds__/*.zip"]
},
"npm": {
"publish": false,
"ignoreVersion": true
},
"hooks": {
"after:git:release": [
"chmod +x .github/scripts/*",
".github/scripts/create_asset.sh"
]
},
"plugins": {
"@release-it/bumper": {
"in": {
"file": "VERSION"
},
"out": {
"file": "VERSION"
}
}
}
}
|