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
this is a follow up to #964.
I just checked changes of 4eccb2a and I see a problem with how Yarn install is implemented. Or let’s say its missing one thing:
Installing dependencies with yarn install lodash --save or yarn install lodash --save works for now but is deprecated since the first public release of Yarn:
So it’s just a matter of time until it breaks.
We should extend the runinstall method to call yarn add instead of yarn install for installing dependencies.
The text was updated successfully, but these errors were encountered:
Hej,
this is a follow up to #964.
I just checked changes of 4eccb2a and I see a problem with how Yarn install is implemented. Or let’s say its missing one thing:
Dependencies should be installed with
yarn add lodash
oryarn add --dev lodash
.See: https://yarnpkg.com/en/docs/cli/install
Installing dependencies with
yarn install lodash --save
oryarn install lodash --save
works for now but is deprecated since the first public release of Yarn:So it’s just a matter of time until it breaks.
We should extend the
runinstall
method to callyarn add
instead ofyarn install
for installing dependencies.The text was updated successfully, but these errors were encountered: