File tree 3 files changed +24
-24
lines changed
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 18
18
"gulp-insert" : " ^0.5.0" ,
19
19
"gulp-rename" : " ^2.0.0" ,
20
20
"gulp-uglify" : " ^3.0.2" ,
21
- "standard-version" : " ^9.3.2" ,
22
21
"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
- ]
42
22
}
43
23
}
Original file line number Diff line number Diff line change 10
10
#
11
11
# Usage: run on main branch or the patch branch
12
12
#
13
- # Requires: Git, Node.js, NPX and RubyGems
13
+ # Requires: Git, NPM and RubyGems
14
14
15
15
set -eu
16
16
@@ -36,7 +36,7 @@ FILES=(
36
36
TOOLS=(
37
37
" git"
38
38
" npm"
39
- " npx "
39
+ " standard-version "
40
40
" gem"
41
41
)
42
42
@@ -143,9 +143,9 @@ resume_config() {
143
143
# auto-generate a new version number to the file 'package.json'
144
144
standard_version () {
145
145
if $opt_pre ; then
146
- npx standard-version --prerelease rc
146
+ standard-version --prerelease rc
147
147
else
148
- npx standard-version
148
+ standard-version
149
149
fi
150
150
}
151
151
You can’t perform that action at this time.
0 commit comments