File tree Expand file tree Collapse file tree 3 files changed +24
-24
lines changed
Expand file tree Collapse file tree 3 files changed +24
-24
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "skip" : {
3+ "commit" : true ,
4+ "tag" : true
5+ },
6+ "types" : [
7+ {
8+ "type" : " feat" ,
9+ "section" : " Features"
10+ },
11+ {
12+ "type" : " fix" ,
13+ "section" : " Bug Fixes"
14+ },
15+ {
16+ "type" : " perf" ,
17+ "section" : " Improvements"
18+ }
19+ ]
20+ }
Original file line number Diff line number Diff line change 1818 "gulp-insert" : " ^0.5.0" ,
1919 "gulp-rename" : " ^2.0.0" ,
2020 "gulp-uglify" : " ^3.0.2" ,
21- "standard-version" : " ^9.3.2" ,
2221 "uglify-js" : " ^3.14.3"
23- },
24- "standard-version" : {
25- "skip" : {
26- "commit" : true ,
27- "tag" : true
28- },
29- "types" : [{
30- "type" : " feat" ,
31- "section" : " Features"
32- },
33- {
34- "type" : " fix" ,
35- "section" : " Bug Fixes"
36- },
37- {
38- "type" : " perf" ,
39- "section" : " Improvements"
40- }
41- ]
4222 }
4323}
Original file line number Diff line number Diff line change 1010#
1111# Usage: run on main branch or the patch branch
1212#
13- # Requires: Git, Node.js, NPX and RubyGems
13+ # Requires: Git, NPM and RubyGems
1414
1515set -eu
1616
@@ -36,7 +36,7 @@ FILES=(
3636TOOLS=(
3737 " git"
3838 " npm"
39- " npx "
39+ " standard-version "
4040 " gem"
4141)
4242
@@ -143,9 +143,9 @@ resume_config() {
143143# auto-generate a new version number to the file 'package.json'
144144standard_version () {
145145 if $opt_pre ; then
146- npx standard-version --prerelease rc
146+ standard-version --prerelease rc
147147 else
148- npx standard-version
148+ standard-version
149149 fi
150150}
151151
You can’t perform that action at this time.
0 commit comments