File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 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) {
2222 default : 'lkgr'
2323 } ) ;
2424 yargs . option ( 'version-bump' , {
25+ type : 'boolean' ,
2526 describe : 'Bump the NODE_MODULE_VERSION constant' ,
2627 default : true
2728 } ) ;
@@ -39,10 +40,12 @@ export function builder(yargs) {
3940 builder : ( yargs ) => {
4041 yargs
4142 . option ( 'bump' , {
43+ type : 'boolean' ,
4244 describe : 'Bump V8 embedder version number or patch version' ,
4345 default : true
4446 } )
4547 . option ( 'squash' , {
48+ type : 'boolean' ,
4649 describe :
4750 'If multiple commits are backported, squash them into one' ,
4851 default : false
@@ -62,8 +65,8 @@ export function builder(yargs) {
6265 describe : 'Directory of an existing V8 clone'
6366 } )
6467 . option ( 'verbose' , {
68+ type : 'boolean' ,
6569 describe : 'Enable verbose output' ,
66- boolean : true ,
6770 default : false
6871 } ) ;
6972}
You can’t perform that action at this time.
0 commit comments