Skip to content

Commit

Permalink
build(semantic-release): 馃懛 add explict typing for changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
MrDynamo committed Apr 18, 2024
1 parent 1641b3b commit 62ef792
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion release.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,24 @@ const config = {
],
},
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/release-notes-generator",
{
//presetConfig:
types: [
{ type: "feat", section: "New Features" },
{ type: "fix", section: "Bug Fixes" },
{ type: "perf", section: "Performance Updates", hidden: false },
{ type: "build", section: "Build System", hidden: false },
{ type: "ci", section: "Continuous Integration", hidden: false },
{ type: "chore", section: "Chores", hidden: false },
{ type: "docs", section: "Documentation", hidden: false },
{ type: "style", section: "Style Changes", hidden: false },
{ type: "refactor", section: "Code Refactoring", hidden: false },
{ type: "test", section: "Test Cases", hidden: true },
],
},
],
[
"@semantic-release/changelog",
{
Expand Down

0 comments on commit 62ef792

Please sign in to comment.