Skip to content

Commit

Permalink
add presetConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlie McBride authored and Charlie McBride committed Jul 9, 2024
1 parent 9dda720 commit 994e8e7
Showing 1 changed file with 30 additions and 2 deletions.
32 changes: 30 additions & 2 deletions .releaserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,41 @@
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
"preset": "conventionalcommits",
"presetConfig": {
"header": "Changelog",
"types": [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "chore", "hidden": true},
{"type": "docs", "hidden": true},
{"type": "style", "hidden": true},
{"type": "refactor", "hidden": true},
{"type": "perf", "hidden": true},
{"type": "test", "hidden": true}
],
"preMajor": true
}
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
"preset": "conventionalcommits",
"presetConfig": {
"header": "Changelog",
"types": [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "chore", "hidden": true},
{"type": "docs", "hidden": true},
{"type": "style", "hidden": true},
{"type": "refactor", "hidden": true},
{"type": "perf", "hidden": true},
{"type": "test", "hidden": true}
],
"preMajor": true
}
}
],
[
Expand Down

0 comments on commit 994e8e7

Please sign in to comment.