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
If we have a variable expansion with @ or *, we are expanding it unconditionally to the provided args, also if they are empty (no elements array or empty string, respectively), while in that case POSIX variable expansion take the provided default values, if any.
The text was updated successfully, but these errors were encountered:
In addition to that, maybe we should allow to define the placeholders with a $ prefix too, to make it more similar to shell variable expansions, and don't have two different sintaxis (with and without npm-run-all). In the regexp is as easy as allowing an optional $ leading character.
npm-run-all/lib/index.js
Lines 51 to 56 in bf91f94
If we have a variable expansion with
@
or*
, we are expanding it unconditionally to the providedargs
, also if they are empty (no elements array or empty string, respectively), while in that case POSIX variable expansion take the provided default values, if any.The text was updated successfully, but these errors were encountered: