Skip to content

Commit

Permalink
chore: adjust change log generation config (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunvegda authored May 11, 2023
1 parent e218e5f commit cdc54c1
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .release-it.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,20 @@
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "refactor", "section": "Refactors" },
{ "type": "perf", "section": "Performance improvements" },
{ "type": "chore", "hidden": true },
{ "type": "style", "hidden": true },
{ "type": "docs", "hidden": true },
{ "type": "test", "hidden": true }
]
}
}
}
}

0 comments on commit cdc54c1

Please sign in to comment.