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
A placeholder technically isn't needed in this example since the name can be passed at the end but it's still a valid example.
> dotnet r migration --"A cool new feature"
npm-run-all has support for default values using the syntax {1:-foo} where if no parameters are passed then foo is used in that spot. You can also specify a "global" default using the syntax {1:=foo} where that instance and every subsequent instance of {1} will also be foo. Both of these features are out of scope for the initial implementation.
The text was updated successfully, but these errors were encountered:
This is similar to how
npm-run-all
supports this and will allow passing values to different parts of the script.{1}
,{2}
, ... - An ordered argument quoted{@}
- All arguments individually quoted{*}
- All arguments joined with spaces and quoted as a single valueAn example of this:
A placeholder technically isn't needed in this example since the name can be passed at the end but it's still a valid example.
npm-run-all
has support for default values using the syntax{1:-foo}
where if no parameters are passed thenfoo
is used in that spot. You can also specify a "global" default using the syntax{1:=foo}
where that instance and every subsequent instance of{1}
will also befoo
. Both of these features are out of scope for the initial implementation.The text was updated successfully, but these errors were encountered: