Skip to content

Commit

Permalink
fix(v8): mark boolean CLI options as such (#861)
Browse files Browse the repository at this point in the history
  • Loading branch information
targos authored Oct 4, 2024
1 parent 1f6bcf6 commit c953d93
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion components/git/v8.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export function builder(yargs) {
default: 'lkgr'
});
yargs.option('version-bump', {
type: 'boolean',
describe: 'Bump the NODE_MODULE_VERSION constant',
default: true
});
Expand All @@ -39,10 +40,12 @@ export function builder(yargs) {
builder: (yargs) => {
yargs
.option('bump', {
type: 'boolean',
describe: 'Bump V8 embedder version number or patch version',
default: true
})
.option('squash', {
type: 'boolean',
describe:
'If multiple commits are backported, squash them into one',
default: false
Expand All @@ -62,8 +65,8 @@ export function builder(yargs) {
describe: 'Directory of an existing V8 clone'
})
.option('verbose', {
type: 'boolean',
describe: 'Enable verbose output',
boolean: true,
default: false
});
}
Expand Down

0 comments on commit c953d93

Please sign in to comment.