Skip to content

Commit

Permalink
chore: rename commit type "dependencies" with "deps"
Browse files Browse the repository at this point in the history
makes it shorter to write and less line conflicts
  • Loading branch information
hasezoey committed Jul 13, 2023
1 parent 245a70f commit e830699
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .releaserc.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = {
{type: "perf", release: "patch"},
{type: "test", release: false},
{type: "chore", release: false},
{type: "dependencies", release: "minor"},
{type: "deps", release: "minor"},
// dont trigger another release on release commit
{type: "release", release: false}
],
Expand All @@ -37,6 +37,8 @@ module.exports = {
{type: "perf", section: "Performance"},
{type: "test", hidden: true},
{type: "chore", hidden: true},
{type: "deps", section: "Dependencies"},
// backwards compatability, remove after 9.0 has been published
{type: "dependencies", section: "Dependencies"},
{type: "revert", section: "Reverts"},
{type: "release", hidden: true}
Expand Down
2 changes: 1 addition & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = {
'test',
'chore',
'revert',
'dependencies',
'deps',
'release',
],
],
Expand Down

0 comments on commit e830699

Please sign in to comment.