Skip to content

Commit d0aebe0

Browse files
committed
chore: update semantic-release config to use angular preset for release notes generation
Configure the release notes generator with the Angular preset and custom sections to categorize commit types more effectively.
1 parent ee0a173 commit d0aebe0

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

.releaserc.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,23 @@
2121
]
2222
}
2323
],
24-
"@semantic-release/release-notes-generator",
24+
[
25+
"@semantic-release/release-notes-generator",
26+
{
27+
"preset": "angular",
28+
"presetConfig": {
29+
"types": [
30+
{"type": "feat", "section": "Features"},
31+
{"type": "fix", "section": "Bug Fixes"},
32+
{"type": "style", "section": "Code Style"},
33+
{"type": "refactor", "section": "Code Refactoring"},
34+
{"type": "perf", "section": "Performance Improvements"},
35+
{"type": "test", "section": "Tests"},
36+
{"type": "chore", "section": "Maintenance"}
37+
]
38+
}
39+
}
40+
],
2541
"@semantic-release/changelog",
2642
[
2743
"@semantic-release/npm",

0 commit comments

Comments
 (0)