Skip to content

Commit

Permalink
ci(changelog): Improve changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Belphemur committed Apr 4, 2021
1 parent d4510d0 commit 3fb3e16
Showing 1 changed file with 46 additions and 3 deletions.
49 changes: 46 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,51 @@
"name": "SoundSwitch",
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "lang",
"release": "patch"
},
{
"type": "boost",
"release": "patch"
}
],
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES"
]
}
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "angular",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
},
"writerOpts": {
"types": [
{"type": "boost", "section": "Enhancements"},
{"type": "lang", "section": "Languages"},
],
"commitsSort": [
"subject",
"scope"
]
}
}
],
"@semantic-release/changelog",
[
"@semantic-release/exec",
Expand Down Expand Up @@ -32,4 +75,4 @@
"@semantic-release/release-notes-generator": "^9.0.2",
"semantic-release": "^17.4.2"
}
}
}

0 comments on commit 3fb3e16

Please sign in to comment.