Skip to content

Commit

Permalink
build(release): exclude internal commits from changelog (#298)
Browse files Browse the repository at this point in the history
  • Loading branch information
lsndr authored Sep 28, 2024
1 parent 466d241 commit aafdb4d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{ "type": "build", "section": "Build System", "hidden": false },
{ "type": "chore", "section": "Build System", "hidden": false },
{ "type": "chore", "scope": "merge", "section": "Build System", "hidden": true },
{ "type": "ci", "section": "Continuous Integration", "hidden": false },
{ "type": "build", "section": "Build System", "hidden": true },
{ "type": "chore", "scope": "deps", "section": "Build System", "hidden": false },
{ "type": "chore", "section": "Build System", "hidden": true },
{ "type": "ci", "section": "Continuous Integration", "hidden": true },
{ "type": "docs", "section": "Documentation", "hidden": false },
{ "type": "feat", "section": "Features", "hidden": false },
{ "type": "fix", "section": "Bug Fixes", "hidden": false },
{ "type": "perf", "section": "Performance Improvements", "hidden": false },
{ "type": "refactor", "section": "Code Refactoring", "hidden": false },
{ "type": "revert", "section": "Reverted Changes", "hidden": false },
{ "type": "style", "section": "Styles", "hidden": false },
{ "type": "test", "section": "Tests", "hidden": false }
{ "type": "refactor", "section": "Code Refactoring", "hidden": true },
{ "type": "revert", "section": "Reverted Changes", "hidden": true },
{ "type": "style", "section": "Styles", "hidden": true },
{ "type": "test", "section": "Tests", "hidden": true }
]
},
"writerOpts": {
Expand Down

0 comments on commit aafdb4d

Please sign in to comment.