Open Scrum opened 4 years ago
I am using parameters like this:
options: { type: 'string', isMultiple: true },
I can make arrays from features such as a string or a number
$ mycli --options.props=1 --options.props=1
options: { props: [ 1, 2 ] }
Tell me how to make an array of objects?
Nested flags are not currently supported.
I am using parameters like this:
I can make arrays from features such as a string or a number
Tell me how to make an array of objects?