File tree 2 files changed +25
-2
lines changed
2 files changed +25
-2
lines changed Original file line number Diff line number Diff line change
1
+ {{ #each releases }}
2
+ {{ #if @first }}
3
+ {{ #each merges }}
4
+ - {{{ message }}} {{ #if href }} [`#{{ id }} `]({{ href }} ){{ /if }}
5
+ {{ /each }}
6
+ {{ #each fixes }}
7
+ - {{{ commit.subject }}} {{ #each fixes }}{{ #if href }} [`#{{ id }} `]({{ href }} ){{ /if }}{{ /each }}
8
+ {{ /each }}
9
+ {{ #each commits }}
10
+ - {{ #if breaking }} **Breaking change:** {{ /if }} {{{ subject }}} {{ #if href }} [`{{ shorthash }} `]({{ href }} ){{ /if }}
11
+ {{ /each }}
12
+ {{ /if }}
13
+ {{ /each }}
Original file line number Diff line number Diff line change 138
138
"devDependencies" : {
139
139
"eslint" : " ^5.9.0" ,
140
140
"mocha" : " ^5.2.0" ,
141
+ "nexe" : " ^3.2.0" ,
141
142
"precommit" : " ^1.2.2" ,
142
- "standard" : " 12.0.1" ,
143
- "nexe" : " ^3.2.0"
143
+ "standard" : " 12.0.1"
144
144
},
145
145
"pkg" : {
146
146
"scripts" : " lib/**/*.js" ,
147
147
"assets" : " patterns.yml"
148
+ },
149
+ "release-it" : {
150
+ "github" : {
151
+ "release" : true ,
152
+ "changelog" : " npx auto-changelog --stdout --commit-limit false -u --template ./changelog.hbs"
153
+ },
154
+ "scripts" : {
155
+ "beforeStage" : " npx auto-changelog -p" ,
156
+ "changelog" : " npx auto-changelog --stdout --commit-limit false --unreleased --template ./preview.hbs"
157
+ }
148
158
}
149
159
}
You can’t perform that action at this time.
0 commit comments