Added release config

This commit is contained in:
Nicolai Ort 2021-08-17 20:52:34 +02:00
parent a9bf9b5a1e
commit 7a79db69ee
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F
1 changed files with 24 additions and 0 deletions

View File

@ -12,7 +12,31 @@
"devDependencies": {
"cpx": "^1.5.0",
"cross-zip-cli": "^1.0.0",
"release-it": "^14.11.5",
"rimraf": "^3.0.2",
"tailwindcss": "^2.2.7"
},
"release-it": {
"git": {
"commit": true,
"requireCleanWorkingDir": false,
"commitMessage": "🚀RELEASE ${version}",
"git.commitArgs": [
"-S"
],
"git.tagArgs": [
"-S"
],
"push": true,
"tag": true,
"tagName": null,
"tagAnnotation": "${version}"
},
"npm": {
"publish": false
},
"hooks": {
"after:bump": "npx auto-changelog --commit-limit false -p -u --hide-credit && git add CHANGELOG.md"
}
}
}