chore: add additional config for standard-release

This commit is contained in:
alistair3149 2022-04-26 12:19:22 -04:00
parent e71225be1b
commit 69ef0ed68c
No known key found for this signature in database
GPG key ID: 94D081060FD3DD9C
2 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,5 @@
{ {
"bumpFiles": [ "packageFiles": [
{ {
"filename": "skin.json", "filename": "skin.json",
"type": "json" "type": "json"

View file

@ -11,7 +11,10 @@
"minify-svg": "svgo --config=.svgo.config.js -q -r -f resources/", "minify-svg": "svgo --config=.svgo.config.js -q -r -f resources/",
"test": "npm run lint", "test": "npm run lint",
"prepare": "husky install", "prepare": "husky install",
"release": "standard-version" "release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
}, },
"devDependencies": { "devDependencies": {
"@commitlint/cli": "^16.2.3", "@commitlint/cli": "^16.2.3",