From 85f2d5323276bfb6bce1a1dce1df8e1fb30594f4 Mon Sep 17 00:00:00 2001 From: Bryan Mishkin <698306+bmish@users.noreply.github.com> Date: Tue, 27 Jun 2023 21:01:00 -0400 Subject: [PATCH] chore: tweak release-it (#380) --- package.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index a8ad4d41..e180ea1c 100644 --- a/package.json +++ b/package.json @@ -92,7 +92,18 @@ }, "plugins": { "@release-it/conventional-changelog": { - "preset": "eslint", + "preset": { + "name": "conventionalcommits", + "types": [ + { "type": "feat", "section": "Features" }, + { "type": "fix", "section": "Bug Fixes" }, + { "type": "perf", "section": "Performance" }, + { "type": "docs", "section": "Documentation" }, + { "type": "chore", "section": "Chores" }, + { "type": "refactor", "section": "Chores" }, + { "type": "test", "section": "Chores" } + ] + }, "infile": "CHANGELOG.md" } }