We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37067ea commit 0063e18Copy full SHA for 0063e18
package.json
@@ -17,7 +17,23 @@
17
],
18
"plugins": [
19
"@semantic-release/commit-analyzer",
20
- "@semantic-release/release-notes-generator",
+ ["@semantic-release/release-notes-generator", {
21
+ "preset": "conventionalcommits",
22
+ "parserOpts": {
23
+ "noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES", "BREAKING"]
24
+ },
25
+ "presetConfig": {
26
+ "types": [
27
+ {"type": "feat", "section": "Added"},
28
+ {"type": "fix", "section": "Fixed"},
29
+ {"type": "chore", "hidden": true},
30
+ {"type": "docs", "hidden": true},
31
+ {"type": "style", "hidden": true},
32
+ {"type": "refactor", "hidden": true},
33
+ {"type": "perf", "hidden": true},
34
+ {"type": "test", "hidden": true}
35
+ ]}
36
+ }],
37
"@semantic-release/changelog",
38
"@semantic-release/npm",
39
"@semantic-release/git",
0 commit comments