Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading