Skip to content

Commit

Permalink
chore: dont publish internal commits (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
lsndr authored Oct 3, 2024
1 parent 8dc1433 commit de733e5
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 @@ -21,18 +21,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 de733e5

Please sign in to comment.