diff --git a/.release-it.json b/.release-it.json new file mode 100644 index 0000000..b0ddd69 --- /dev/null +++ b/.release-it.json @@ -0,0 +1,39 @@ +{ + "git": { + "tagName": "v${version}", + "commitMessage": "chore: release v${version}" + }, + "npm": { + "publish": true + }, + "github": { + "release": true, + "releaseName": "${version}" + }, + "plugins": { + "@release-it/conventional-changelog": { + "infile": "CHANGELOG.md", + "preset": { + "name": "conventionalcommits", + "types": [ + { + "type": "feat", + "section": "Features" + }, + { + "type": "fix", + "section": "Bug Fixes" + }, + { + "type": "refactor", + "section": "Changes" + }, + { + "type": "chore", + "section": "Maintenance" + } + ] + } + } + } +}