From 5a2c6878a02f930a67b2a832bde7c0d5b26de2e9 Mon Sep 17 00:00:00 2001 From: Michael Kriese Date: Mon, 8 Jan 2024 11:09:51 +0100 Subject: [PATCH] fix: reorder sematic release types --- src/changelog/util.js | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/changelog/util.js b/src/changelog/util.js index 987b87f..6883d54 100644 --- a/src/changelog/util.js +++ b/src/changelog/util.js @@ -11,10 +11,6 @@ export const config = conventionalChangelogPreset({ type: 'feat', section: 'Features', }, - { - type: 'feature', - section: 'Features', - }, { type: 'fix', section: 'Bug Fixes', @@ -35,10 +31,6 @@ export const config = conventionalChangelogPreset({ type: 'style', section: 'Styles', }, - { - type: 'chore', - section: 'Miscellaneous Chores', - }, { type: 'refactor', section: 'Code Refactoring', @@ -55,6 +47,10 @@ export const config = conventionalChangelogPreset({ type: 'ci', section: 'Continuous Integration', }, + { + type: 'chore', + section: 'Miscellaneous Chores', + }, ], });