* `Option` does not have a value, and is a mandatory option. * * @param {Option} option * @private
(option)
| 2068 | */ |
| 2069 | |
| 2070 | missingMandatoryOptionValue(option) { |
| 2071 | const message = `error: required option '${option.flags}' not specified`; |
| 2072 | this.error(message, { code: 'commander.missingMandatoryOptionValue' }); |
| 2073 | } |
| 2074 | |
| 2075 | /** |
| 2076 | * `Option` conflicts with another option. |
no test coverage detected