Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,28 @@
}
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "perf", "section": "Performance Improvements" },
{ "type": "refactor", "section": "Refactoring" },
{ "type": "chore", "scope": "deps", "section": "Dependency Updates", "hidden": false },
{ "type": "chore", "section": "Chores", "hidden": false },
Comment thread
dawsontoth marked this conversation as resolved.
{ "type": "docs", "section": "Documentation" },
{ "type": "style", "section": "Styles" },
{ "type": "test", "section": "Tests" },
{ "type": "build", "section": "Build System" },
{ "type": "ci", "section": "Continuous Integration" },
{ "type": "revert", "section": "Reverts" }
]
}
}
],
[
"@semantic-release/npm",
{
Expand Down
33 changes: 0 additions & 33 deletions release.config.js

This file was deleted.

5 changes: 5 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@
],
"matchCurrentVersion": "!/^0/",
"automerge": true
},
{
"description": "Hold conventional-changelog-conventionalcommits on v9: @semantic-release/release-notes-generator@14 bundles the Handlebars conventional-changelog-writer@8, and preset v10's function-based templates render empty release notes under writer@8. Drop once release-notes-generator ships a writer@9 major.",
"matchPackageNames": ["conventional-changelog-conventionalcommits"],
"allowedVersions": "<10"
}
]
}