File tree 4 files changed +48
-3
lines changed
4 files changed +48
-3
lines changed Original file line number Diff line number Diff line change 12
12
"plugins" : {
13
13
"@release-it/conventional-changelog" : {
14
14
"infile" : " CHANGELOG.md" ,
15
- "preset" : " angular"
15
+ "preset" : " angular" ,
16
+ "types" : [
17
+ {
18
+ "type" : " feat" ,
19
+ "section" : " Features"
20
+ },
21
+ {
22
+ "type" : " fix" ,
23
+ "section" : " Bug Fixes"
24
+ },
25
+ {
26
+ "type" : " perf" ,
27
+ "section" : " Performance Improvements"
28
+ },
29
+ { "type" : " build" , "hidden" : true },
30
+ { "type" : " chore" , "hidden" : true },
31
+ { "type" : " ci" , "hidden" : true },
32
+ { "type" : " docs" , "hidden" : true },
33
+ { "type" : " refactor" , "hidden" : true },
34
+ { "type" : " style" , "hidden" : true },
35
+ { "type" : " test" , "hidden" : true }
36
+ ]
16
37
}
17
38
}
18
39
}
Original file line number Diff line number Diff line change 32
32
"lint:spelling" : " cspell \" **\" \" .github/**/*\" " ,
33
33
"prepare" : " husky" ,
34
34
"test" : " vitest" ,
35
- "test:create" : " npx tsx script/create-test-e2e.ts" ,
36
- "test:initialize" : " npx tsx script/initialize-test-e2e.ts" ,
35
+ "test:create" : " tsx script/create-test-e2e.ts" ,
36
+ "test:initialize" : " tsx script/initialize-test-e2e.ts" ,
37
37
"test:migrate" : " vitest run -r script/" ,
38
38
"tsc" : " tsc"
39
39
},
Original file line number Diff line number Diff line change @@ -132,6 +132,18 @@ export const blockReleaseIt = base.createBlock({
132
132
"@release-it/conventional-changelog" : {
133
133
infile : "CHANGELOG.md" ,
134
134
preset : "angular" ,
135
+ types : [
136
+ { section : "Features" , type : "feat" } ,
137
+ { section : "Bug Fixes" , type : "fix" } ,
138
+ { section : "Performance Improvements" , type : "perf" } ,
139
+ { hidden : true , type : "build" } ,
140
+ { hidden : true , type : "chore" } ,
141
+ { hidden : true , type : "ci" } ,
142
+ { hidden : true , type : "docs" } ,
143
+ { hidden : true , type : "refactor" } ,
144
+ { hidden : true , type : "style" } ,
145
+ { hidden : true , type : "test" } ,
146
+ ] ,
135
147
} ,
136
148
} ,
137
149
} ) ,
Original file line number Diff line number Diff line change @@ -68,6 +68,18 @@ export async function createRootFiles(options: Options) {
68
68
"@release-it/conventional-changelog" : {
69
69
infile : "CHANGELOG.md" ,
70
70
preset : "angular" ,
71
+ types : [
72
+ { section : "Features" , type : "feat" } ,
73
+ { section : "Bug Fixes" , type : "fix" } ,
74
+ { section : "Performance Improvements" , type : "perf" } ,
75
+ { hidden : true , type : "build" } ,
76
+ { hidden : true , type : "chore" } ,
77
+ { hidden : true , type : "ci" } ,
78
+ { hidden : true , type : "docs" } ,
79
+ { hidden : true , type : "refactor" } ,
80
+ { hidden : true , type : "style" } ,
81
+ { hidden : true , type : "test" } ,
82
+ ] ,
71
83
} ,
72
84
} ,
73
85
} ) ,
You can’t perform that action at this time.
0 commit comments