The service is using cli.option() to register an option on the command.
With latest version of commander, we must use requiredOption to specify a required option.
We must add a flag to specify that an option is required in the CommandOption interface of the nestjs-console module.
Documentation must be added to explain how to use and parse options and arguments.
We must also test options and arguments.
The service is using cli.option() to register an option on the command. With latest version of commander, we must use requiredOption to specify a required option.
We must add a flag to specify that an option is required in the CommandOption interface of the nestjs-console module.
Documentation must be added to explain how to use and parse options and arguments. We must also test options and arguments.