Skip to content

Commit

Permalink
ci: change release note sections and order
Browse files Browse the repository at this point in the history
  • Loading branch information
Ijee committed Apr 11, 2024
1 parent 66f8431 commit 4eb590c
Showing 1 changed file with 75 additions and 1 deletion.
76 changes: 75 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,87 @@
[
"@semantic-release/commit-analyzer",
{
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
},
"preset": "angular"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "angular"
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
},
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"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": "build",
"section": "Build System",
"hidden": false
},
{
"type": "chore",
"section": "Build System",
"hidden": true
},
{
"type": "ci",
"section": "Continuous Integration",
"hidden": false
},
{
"type": "docs",
"section": "Documentation",
"hidden": true
},
{
"type": "style",
"section": "Styles",
"hidden": true
},
{
"type": "test",
"section": "Tests",
"hidden": true
}
]
},
"writerOpts": {
"commitsSort": [
"subject",
"scope"
]
}
}
],
[
Expand Down

0 comments on commit 4eb590c

Please sign in to comment.