Skip to content

Commit

Permalink
chore(commitlint): add new commit type "devdeps"
Browse files Browse the repository at this point in the history
and resulting section, to separate dependencies and dev-dependencies
  • Loading branch information
hasezoey committed Oct 6, 2023
1 parent b433916 commit 8831fdc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .releaserc.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ module.exports = {
{type: "test", release: false},
{type: "chore", release: false},
{type: "deps", release: "minor"},
{type: "devdeps", release: false},
// backwards compatability, remove after 9.0 has been published
{type: "dependencies", release: "minor"},
// dont trigger another release on release commit
Expand All @@ -40,6 +41,7 @@ module.exports = {
{type: "test", hidden: true},
{type: "chore", hidden: true},
{type: "deps", section: "Dependencies"},
{type: "devdeps", section: "Dev-Dependencies"},
// backwards compatability, remove after 9.0 has been published
{type: "dependencies", section: "Dependencies"},
{type: "revert", section: "Reverts"},
Expand Down
1 change: 1 addition & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ module.exports = {
'chore',
'revert',
'deps',
'devdeps',
'release',
],
],
Expand Down

0 comments on commit 8831fdc

Please sign in to comment.