Skip to content

Commit

Permalink
fix: update preset config
Browse files Browse the repository at this point in the history
  • Loading branch information
jpoehnelt committed Sep 20, 2021
1 parent 14c14e5 commit 3a3cf38
Showing 1 changed file with 12 additions and 45 deletions.
57 changes: 12 additions & 45 deletions release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,51 +35,18 @@ const config = {
preset: "conventionalcommits",
presetConfig: {
types: [
{
type: "feat",
section: "Features",
hidden: false,
},
{
type: "fix",
section: "Bugs",
hidden: false,
},
{
type: "docs",
section: "Docs",
hidden: false,
},
{
type: "style",
section: "Other",
hidden: false,
},
{
type: "refactor",
section: "Other",
hidden: false,
},
{
type: "perf",
section: "Other",
hidden: false,
},
{
type: "test",
section: "Other",
hidden: false,
},
{
type: "ci",
section: "Other",
hidden: false,
},
{
type: "chore",
section: "Other",
hidden: false,
},
{ type: "feat", section: "Features" },
{ type: "feature", section: "Features" },
{ type: "fix", section: "Bug Fixes" },
{ type: "perf", section: "Performance Improvements" },
{ type: "revert", section: "Reverts" },
{ type: "docs", section: "Documentation", hidden: false },
{ type: "style", section: "Styles", hidden: false },
{ type: "chore", section: "Miscellaneous Chores", hidden: false },
{ type: "refactor", section: "Code Refactoring", hidden: false },
{ type: "test", section: "Tests", hidden: false },
{ type: "build", section: "Build System", hidden: false },
{ type: "ci", section: "Continuous Integration", hidden: false },
],
},
},
Expand Down

0 comments on commit 3a3cf38

Please sign in to comment.