Skip to content

Commit

Permalink
ci: update release config
Browse files Browse the repository at this point in the history
Update release config to also release a new patch version for updates of production dependencies.
  • Loading branch information
jojomatik authored Aug 26, 2022
1 parent 538dcf3 commit 99e7f17
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,40 @@ module.exports = {
"@semantic-release/commit-analyzer",
{
preset: "angular",
releaseRules: [
{ type: "build", scope: "deps", release: "patch" },
],
},
],
[
"@semantic-release/release-notes-generator",
{
preset: "conventionalcommits",
presetConfig: {
types: [
{
type: "feat",
section: "Features",
hidden: false,
},
{
type: "fix",
section: "Bug Fixes",
hidden: false,
},
{
type: "perf",
section: "Performance Improvements",
hidden: false,
},
{
type: "build",
scope: "deps",
hidden: false,
section: "Dependency updates",
},
],
},
},
],
"@semantic-release/github",
Expand Down

0 comments on commit 99e7f17

Please sign in to comment.