Oclif does not properly parse flags with multiple = true and args, unless flags are after args. The command
$ command --flag=value arg
will always be produce flag = ["value", "arg"]. This forces the user to always place flags with multiple at the end of the command after all the required args
$ command arg --flag=value
Oclif does not properly parse flags with multiple = true and args, unless flags are after args. The command
$ command --flag=value arg
will always be produce flag = ["value", "arg"]. This forces the user to always place flags with multiple at the end of the command after all the required args$ command arg --flag=value
See: https://github.com/oclif/parser/pull/25 https://github.com/oclif/parser/pull/25/files