File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ export function builder(yargs) {
22
22
default : 'lkgr'
23
23
} ) ;
24
24
yargs . option ( 'version-bump' , {
25
+ type : 'boolean' ,
25
26
describe : 'Bump the NODE_MODULE_VERSION constant' ,
26
27
default : true
27
28
} ) ;
@@ -39,10 +40,12 @@ export function builder(yargs) {
39
40
builder : ( yargs ) => {
40
41
yargs
41
42
. option ( 'bump' , {
43
+ type : 'boolean' ,
42
44
describe : 'Bump V8 embedder version number or patch version' ,
43
45
default : true
44
46
} )
45
47
. option ( 'squash' , {
48
+ type : 'boolean' ,
46
49
describe :
47
50
'If multiple commits are backported, squash them into one' ,
48
51
default : false
@@ -62,8 +65,8 @@ export function builder(yargs) {
62
65
describe : 'Directory of an existing V8 clone'
63
66
} )
64
67
. option ( 'verbose' , {
68
+ type : 'boolean' ,
65
69
describe : 'Enable verbose output' ,
66
- boolean : true ,
67
70
default : false
68
71
} ) ;
69
72
}
You can’t perform that action at this time.
0 commit comments