* Add option name(s) that conflict with this option. * An error will be displayed if conflicting options are found during parsing. * * @example * new Option('--rgb').conflicts('cmyk'); * new Option('--js').conflicts(['ts', 'jsx']); * * @param {(string | string[])} names * @re
(names)
| 80 | */ |
| 81 | |
| 82 | conflicts(names) { |
| 83 | this.conflictsWith = this.conflictsWith.concat(names); |
| 84 | return this; |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * Specify implied option values for when this option is set and the implied options are not. |
no outgoing calls