build: reorder changelog sections

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

View file

@ -8,10 +8,6 @@ const config = conventionalChangelogPreset({
type: 'feat', type: 'feat',
section: 'Features', section: 'Features',
}, },
{
type: 'feature',
section: 'Features',
},
{ {
type: 'fix', type: 'fix',
section: 'Bug Fixes', section: 'Bug Fixes',
@ -32,10 +28,6 @@ const config = conventionalChangelogPreset({
type: 'style', type: 'style',
section: 'Styles', section: 'Styles',
}, },
{
type: 'chore',
section: 'Miscellaneous Chores',
},
{ {
type: 'refactor', type: 'refactor',
section: 'Code Refactoring', section: 'Code Refactoring',
@ -52,6 +44,10 @@ const config = conventionalChangelogPreset({
type: 'ci', type: 'ci',
section: 'Continuous Integration', section: 'Continuous Integration',
}, },
{
type: 'chore',
section: 'Miscellaneous Chores',
},
], ],
}); });