Closed bfv closed 4 years ago
Since CLI options can also be set to true in .oecconfig a way to set them to false on the CLI is needed. With the yargs package a prefix no- can be used. So if --delete sets the delete flag to true, --no-delete sets it to false.
.oecconfig
yargs
no-
--delete
--no-delete
Since CLI options can also be set to true in
.oecconfig
a way to set them to false on the CLI is needed. With theyargs
package a prefixno-
can be used. So if--delete
sets the delete flag to true,--no-delete
sets it to false.