Added release-it config

This commit is contained in:
Nicolai Ort 2021-08-14 10:38:56 +02:00
parent 1a8410c421
commit ca0328611b
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F
1 changed files with 19 additions and 1 deletions

View File

@ -19,6 +19,24 @@
"uniqid": "^5.3.0"
},
"devDependencies": {
"nodemon": "^2.0.12"
"nodemon": "^2.0.12",
"release-it": "^14.11.3"
},
"release-it": {
"git": {
"commit": true,
"requireCleanWorkingDir": false,
"commitMessage": "🚀RELEASE ${version}",
"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"
}
}
}