You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Replace commander with hand-written command-line parser
Commander accepts a space as delimited of multiple values for an option.
It makes unclear what option the values belong to and forces "--" to be
inserted before the first argument following the option values.
BREAKING CHANGE: Although you shouldn't notice any change on the behaviour of the command line, something unexpected might've changed. Something did change
- if you're annoyed by inserting "--" between the multi-value option and other
arguments, you don't have to do it any more. Multi-value options can be entered
either using the option prefix multiple times for each value, or using
the option prefix just once and separating the values by commas.
0 commit comments