File tree Expand file tree Collapse file tree 1 file changed +52
-3
lines changed
Expand file tree Collapse file tree 1 file changed +52
-3
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,57 @@ module.exports = {
2323 [
2424 "@semantic-release/release-notes-generator" ,
2525 {
26- preset : "angular" ,
27- } ,
26+ preset : "conventionalcommits" ,
27+ presetConfig : {
28+ types : [
29+ {
30+ "type" : "feat" ,
31+ "section" : "Features" ,
32+ "hidden" : false
33+ } ,
34+ {
35+ "type" : "fix" ,
36+ "section" : "Bug Fixes" ,
37+ "hidden" : false
38+ } ,
39+ {
40+ "type" : "docs" ,
41+ "section" : "Documentation" ,
42+ "hidden" : false
43+ } ,
44+ {
45+ "type" : "style" ,
46+ "section" : "Updates & Maintenance" ,
47+ "hidden" : false
48+ } ,
49+ {
50+ "type" : "refactor" ,
51+ "section" : "Updates & Maintenance" ,
52+ "hidden" : false
53+ } ,
54+ {
55+ "type" : "perf" ,
56+ "section" : "Updates & Maintenance" ,
57+ "hidden" : false
58+ } ,
59+ {
60+ "type" : "test" ,
61+ "section" : "Updates & Maintenance" ,
62+ "hidden" : false
63+ } ,
64+ {
65+ "type" : "ci" ,
66+ "section" : "Updates & Maintenance" ,
67+ "hidden" : false
68+ } ,
69+ {
70+ "type" : "chore" ,
71+ "section" : "Updates & Maintenance" ,
72+ "hidden" : false
73+ }
74+ ]
75+ }
76+ }
2877 ] ,
2978 [
3079 "@semantic-release/changelog" ,
@@ -44,7 +93,7 @@ module.exports = {
4493 {
4594 assets : [ "CHANGELOG.md" , "build.gradle" , "README.md" ] ,
4695 message :
47- "chore(release) : ${nextRelease.version} \n\n${nextRelease.notes}" ,
96+ "chore: ${nextRelease.version} (release) \n\n${nextRelease.notes}" ,
4897 } ,
4998 ] ,
5099 ] ,
You can’t perform that action at this time.
0 commit comments