Skip to content

Commit 90b8b0e

Browse files
authored
chore(deps): temporary override conventional-changelog-conventionalcommits to v8 (#171)
## Context This fixes semantic-release/release-notes-generator#657 until @commitlint/config-conventional is updated, see conventional-changelog/commitlint#4063. ## Changes - Added: override in package.json - Updated: `.releaserc` ## Checklist - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas - [x] I have made corresponding changes to the documentation - [x] I have tested my code for breaking changes and added the corresponding footer in this PR if needed - [x] I have added tests that prove my fix is effective or that my feature works
1 parent 86668fd commit 90b8b0e

File tree

3 files changed

+32
-28
lines changed

3 files changed

+32
-28
lines changed

.releaserc

Lines changed: 18 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -35,52 +35,48 @@
3535
"presetConfig": {
3636
"types": [
3737
{
38-
"type": "feat",
39-
"section": "🚀 Features"
40-
},
41-
{
42-
"type": "perf",
43-
"section": "🏎 Performance"
38+
"type": "build",
39+
"section": "📦 Build"
4440
},
4541
{
46-
"type": "fix",
47-
"section": "🐞 Bug Fixes"
42+
"type": "chore",
43+
"section": "🏡 Chores"
4844
},
4945
{
50-
"type": "refactor",
51-
"section": "💅 Refactors"
46+
"type": "ci",
47+
"section": "🤖 CI"
5248
},
5349
{
5450
"type": "docs",
5551
"section": "📖 Documentation"
5652
},
5753
{
58-
"type": "build",
59-
"section": "📦 Build"
54+
"type": "feat",
55+
"section": "🚀 Features"
6056
},
6157
{
62-
"type": "types",
63-
"section": "🌊 Types"
58+
"type": "fix",
59+
"section": "🐞 Bug Fixes"
6460
},
6561
{
66-
"type": "chore",
67-
"section": "🏡 Chore"
62+
"type": "perf",
63+
"section": "🏎 Performance"
6864
},
6965
{
70-
"type": "examples",
71-
"section": "🏀 Examples"
66+
"type": "refactor",
67+
"section": "💅 Refactors"
7268
},
7369
{
74-
"type": "test",
75-
"section": "✅ Tests"
70+
"type": "revert",
71+
"section": "⏪ Reverts"
7672
},
7773
{
7874
"type": "style",
7975
"section": "🎨 Styles"
8076
},
8177
{
82-
"type": "ci",
83-
"section": "🤖 CI"
78+
"type": "test",
79+
"section": "✅ Tests"
8480
}
8581
]
8682
}

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,10 @@
7777
"engines": {
7878
"node": "22.x"
7979
},
80-
"packageManager": "[email protected]"
80+
"packageManager": "[email protected]",
81+
"pnpm": {
82+
"overrides": {
83+
"conventional-changelog-conventionalcommits": ">=8.0.0"
84+
}
85+
}
8186
}

pnpm-lock.yaml

Lines changed: 8 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)