From 823985af8d07c150c5d22791b01b7443f3da5217 Mon Sep 17 00:00:00 2001 From: Michael Kriese Date: Wed, 7 Feb 2024 14:46:49 +0000 Subject: [PATCH] build: reorder changelog sections Signed-off-by: Michael Kriese --- tools/changelog/util.js | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/tools/changelog/util.js b/tools/changelog/util.js index 987b87f..6883d54 100644 --- a/tools/changelog/util.js +++ b/tools/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', + }, ], });