Skip to content

Commit

Permalink
chore: included chore like patch with release type
Browse files Browse the repository at this point in the history
  • Loading branch information
lfbarrile01 committed Dec 23, 2024
1 parent 26abc37 commit 75343ac
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,15 @@ module.exports = {
{ name: 'develop', channel: 'next' }, // Dev
],
plugins: [
"@semantic-release/commit-analyzer",
[
"@semantic-release/commit-analyzer",
{
preset: "conventionalcommits",
releaseRules: [
{ type: "chore", release: "patch" } // Included "chore" on patch type
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
Expand All @@ -24,4 +32,4 @@ module.exports = {
}
]
]
};
};

0 comments on commit 75343ac

Please sign in to comment.