Skip to content

Commit

Permalink
fix: reorder sematic release types
Browse files Browse the repository at this point in the history
  • Loading branch information
viceice committed Jan 8, 2024
1 parent 33c96cd commit 5a2c687
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions src/changelog/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ export const config = conventionalChangelogPreset({
type: 'feat',
section: 'Features',
},
{
type: 'feature',
section: 'Features',
},
{
type: 'fix',
section: 'Bug Fixes',
Expand All @@ -35,10 +31,6 @@ export const config = conventionalChangelogPreset({
type: 'style',
section: 'Styles',
},
{
type: 'chore',
section: 'Miscellaneous Chores',
},
{
type: 'refactor',
section: 'Code Refactoring',
Expand All @@ -55,6 +47,10 @@ export const config = conventionalChangelogPreset({
type: 'ci',
section: 'Continuous Integration',
},
{
type: 'chore',
section: 'Miscellaneous Chores',
},
],
});

Expand Down

0 comments on commit 5a2c687

Please sign in to comment.