diff --git a/package.json b/package.json index 7408152..cbbd3cf 100644 --- a/package.json +++ b/package.json @@ -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" + } } }