As written in #3853, the CLI will need to accept the following values as boolean:
Booleans are case-insensitive, and are represented by the following values.
True: 1, yes, true, on
False: 0, no, false, off
Because minimist only accepts true/false, right before minimist parses the args, the boolean options will need to be validated and updatedto true/false. That's the purpose of this issue
As written in #3853, the CLI will need to accept the following values as boolean:
Because minimist only accepts
true/false, right before minimist parses the args, the boolean options will need to be validated and updatedtotrue/false. That's the purpose of this issue