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
From what I can tell, options are parsed without any knowledge about whether options take arguments or not. That means that for instance:
grunt sometask --bool-option -v
is treated as though it is the same as:
grunt sometask --bool-option=-v
That's pretty confusing, since alone each of these options will work reasonably. It seems at least the parser should see that the following argument starts with a - and treat it as another option, not an argument to the first option.
The text was updated successfully, but these errors were encountered:
From what I can tell, options are parsed without any knowledge about whether options take arguments or not. That means that for instance:
grunt sometask --bool-option -v
is treated as though it is the same as:
grunt sometask --bool-option=-v
That's pretty confusing, since alone each of these options will work reasonably. It seems at least the parser should see that the following argument starts with a
-
and treat it as another option, not an argument to the first option.The text was updated successfully, but these errors were encountered: