engine
engine copied to clipboard
Boolean runtime arguments are not parsed when passed last in the list
For example, with yarn start:all --projectPath ../some-project --freshlyCloned
, the value of freshlyCloned
will be undefined, not true
. However, with yarn start:all --freshlyCloned --projectPath ../some-project
, the value of freshlyCloned
will be properly set to true
.