Update checked-in dependencies
This commit is contained in:
parent
25fef55830
commit
5fee2f2ed7
8 changed files with 337 additions and 587 deletions
16
node_modules/commander/lib/argument.js
generated
vendored
16
node_modules/commander/lib/argument.js
generated
vendored
|
|
@ -109,6 +109,22 @@ class Argument {
|
|||
};
|
||||
return this;
|
||||
};
|
||||
|
||||
/**
|
||||
* Make option-argument required.
|
||||
*/
|
||||
argRequired() {
|
||||
this.required = true;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Make option-argument optional.
|
||||
*/
|
||||
argOptional() {
|
||||
this.required = false;
|
||||
return this;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue