build: reorder changelog sections

Signed-off-by: Michael Kriese <michael.kriese@gmx.de>
This commit is contained in:
Michael Kriese 2024-02-07 14:46:49 +00:00
parent b160dccfd2
commit 823985af8d

View file

@ -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',
},
],
});