Skip to content

Commit

Permalink
chore: customize the changelog (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
KazuCocoa authored Dec 1, 2022
1 parent 4a15bb0 commit 507e3a2
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,24 @@
{"type": "chore", "release": "patch"}
]
}],
"@semantic-release/release-notes-generator",
["@semantic-release/release-notes-generator",
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "perf", "section": "Performance Improvements"},
{"type": "revert", "section": "Reverts"},
{"type": "chore", "section": "Miscellaneous Chores"},
{"type": "refactor", "section": "Code Refactoring"},
{"type": "docs", "section": "Documentation", "hidden": true},
{"type": "style", "section": "Styles", "hidden": true},
{"type": "test", "section": "Tests", "hidden": true},
{"type": "build", "section": "Build System", "hidden": true},
{"type": "ci", "section": "Continuous Integration", "hidden": true}
]
}
],
["@semantic-release/changelog", {
"changelogFile": "CHANGELOG.md"
}],
Expand Down

0 comments on commit 507e3a2

Please sign in to comment.