2021-02-26 15:57:47 +00:00
|
|
|
{
|
2021-03-27 05:48:12 +00:00
|
|
|
"git": {
|
|
|
|
"requireCleanWorkingDir": false,
|
2021-04-19 05:38:50 +00:00
|
|
|
"changelog": ".github/scripts/create_changelog.sh",
|
2021-03-27 12:10:36 +00:00
|
|
|
"tagName": "v${version}"
|
2021-03-27 05:48:12 +00:00
|
|
|
},
|
2021-02-26 15:57:47 +00:00
|
|
|
"github": {
|
2021-03-25 14:22:43 +00:00
|
|
|
"release": true,
|
2021-03-28 08:00:51 +00:00
|
|
|
"releaseName": "v${version}",
|
|
|
|
"assets": ["__builds__/*.zip"]
|
2021-02-26 15:57:47 +00:00
|
|
|
},
|
|
|
|
"npm": {
|
|
|
|
"publish": false,
|
|
|
|
"ignoreVersion": true
|
|
|
|
},
|
2021-03-30 17:20:26 +00:00
|
|
|
"hooks": {
|
2021-04-03 02:24:41 +00:00
|
|
|
"before:init": [
|
2021-03-30 17:20:26 +00:00
|
|
|
"chmod +x .github/scripts/*",
|
2021-04-03 02:24:41 +00:00
|
|
|
".github/scripts/pre_check.sh"
|
|
|
|
],
|
|
|
|
"after:git:release": ".github/scripts/create_asset.sh"
|
2021-03-30 17:20:26 +00:00
|
|
|
},
|
2021-02-26 15:57:47 +00:00
|
|
|
"plugins": {
|
|
|
|
"@release-it/bumper": {
|
|
|
|
"in": {
|
|
|
|
"file": "VERSION"
|
|
|
|
},
|
|
|
|
"out": {
|
|
|
|
"file": "VERSION"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-25 14:22:43 +00:00
|
|
|
}
|