Skip to content

Commit

Permalink
fix: something
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminHalko committed Jan 30, 2024
1 parent d1adfcd commit 9622b08
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions .releaserc.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,26 @@ module.exports = {
}
],
"@semantic-release/changelog",
"@semantic-release/release-notes-generator",
[
"@semantic-release/release-notes-generator",
{
presetConfig: {
types: [
{ type: "feat", section: "Features" },
{ type: "fix", section: "Bug Fixes" },
{ type: "docs", section: "Documentation" },
{ type: "style", section: "Styles" },
{ type: "refactor", section: "Code Refactoring" },
{ type: "perf", section: "Performance Improvements" },
{ type: "test", section: "Tests" },
{ type: "build", section: "Builds" },
{ type: "ci", section: "Continuous Integration" },
{ type: "chore", section: "Chores" },
{ type: "revert", section: "Reverts" },
],
},
}
],
[
"@droidsolutions-oss/semantic-release-update-file",
{
Expand Down Expand Up @@ -60,5 +79,7 @@ module.exports = {
"clearWorkspace": true
}
]
]
],


};

0 comments on commit 9622b08

Please sign in to comment.