Fails to parse command line if defaultValue is null and type is String and multiple is true.
Using following options:
{
name: 'tags',
alias: 't',
type: String,
multiple: true,
defaultValue: null
},
If --tags array values are provided in CLI then it parses them incorrectly. Last string is split in array of chars and everything else is ignored.
Fails to parse command line if defaultValue is null and type is String and multiple is true.
Using following options:
If
--tagsarray values are provided in CLI then it parses them incorrectly. Last string is split in array of chars and everything else is ignored.