Skip to content

Commit

Permalink
chores(): Fix missing sections in release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexnault committed Feb 5, 2021
1 parent 039a179 commit 7ac8a0b
Showing 1 changed file with 50 additions and 2 deletions.
52 changes: 50 additions & 2 deletions .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"master",
{ "name": "next", "channel": "next", "prerelease": "next" }
],
"preset": "angular",
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{ "type": "docs", "release": "patch" },
{ "type": "refactor", "release": "patch" },
Expand All @@ -20,7 +20,55 @@
}
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/release-notes-generator",
{
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features",
"hidden": false
},
{
"type": "fix",
"section": "Bug Fixes",
"hidden": false
},
{
"type": "docs",
"section": "Documentation",
"hidden": false
},
{
"type": "refactor",
"section": "Code Refactors",
"hidden": false
},
{
"type": "perf",
"section": "Performance",
"hidden": false
},
{
"type": "style",
"section": "Styles",
"hidden": false
},
{
"type": "test",
"section": "Tests",
"hidden": false
},
{
"type": "chore",
"section": "Chores",
"hidden": false
}
]
}
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
Expand Down

0 comments on commit 7ac8a0b

Please sign in to comment.