From 3134f615f5c80bd8aaf40f7e4f553a4f99497860 Mon Sep 17 00:00:00 2001 From: moonrailgun Date: Sat, 30 Dec 2023 02:12:53 +0800 Subject: [PATCH] chore: update release it json config --- .release-it.json | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .release-it.json diff --git a/.release-it.json b/.release-it.json new file mode 100644 index 0000000..eb9651a --- /dev/null +++ b/.release-it.json @@ -0,0 +1,44 @@ +{ + "github": { + "release": true + }, + "git": { + "commitMessage": "chore: release v${version}" + }, + "npm": { + "publish": false + }, + "hooks": { + "after:bump": "echo Version Upgrade Success. checkout more in CHANGELOG" + }, + "plugins": { + "@release-it/conventional-changelog": { + "infile": "CHANGELOG.md", + "preset": { + "name": "conventionalcommits", + "types": [ + { + "type": "feat", + "section": "Features" + }, + { + "type": "fix", + "section": "Bug Fixes" + }, + { + "type": "docs", + "section": "Document" + }, + { + "type": "refactor", + "section": "Others" + }, + { + "type": "chore", + "section": "Others" + } + ] + } + } + } +}