From 3a3cf385e8179612012fe20faa118319ba6cb8c6 Mon Sep 17 00:00:00 2001 From: Justin Poehnelt Date: Mon, 20 Sep 2021 14:05:33 -0600 Subject: [PATCH] fix: update preset config --- release.config.js | 57 ++++++++++------------------------------------- 1 file changed, 12 insertions(+), 45 deletions(-) diff --git a/release.config.js b/release.config.js index dbd14a0..460cb1b 100644 --- a/release.config.js +++ b/release.config.js @@ -35,51 +35,18 @@ const config = { preset: "conventionalcommits", presetConfig: { types: [ - { - type: "feat", - section: "Features", - hidden: false, - }, - { - type: "fix", - section: "Bugs", - hidden: false, - }, - { - type: "docs", - section: "Docs", - hidden: false, - }, - { - type: "style", - section: "Other", - hidden: false, - }, - { - type: "refactor", - section: "Other", - hidden: false, - }, - { - type: "perf", - section: "Other", - hidden: false, - }, - { - type: "test", - section: "Other", - hidden: false, - }, - { - type: "ci", - section: "Other", - hidden: false, - }, - { - type: "chore", - section: "Other", - hidden: false, - }, + { type: "feat", section: "Features" }, + { type: "feature", section: "Features" }, + { type: "fix", section: "Bug Fixes" }, + { type: "perf", section: "Performance Improvements" }, + { type: "revert", section: "Reverts" }, + { type: "docs", section: "Documentation", hidden: false }, + { type: "style", section: "Styles", hidden: false }, + { type: "chore", section: "Miscellaneous Chores", hidden: false }, + { type: "refactor", section: "Code Refactoring", hidden: false }, + { type: "test", section: "Tests", hidden: false }, + { type: "build", section: "Build System", hidden: false }, + { type: "ci", section: "Continuous Integration", hidden: false }, ], }, },