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
Expected to use one of the latest Yarn LTS version
Actual Behavior
We are using the legacy yarn 1.22 forced in the package.json. It should be removed or changed to the latest yarn lts version.
It takes forever to install the project and there are security problems with the legacy version.
Steps to Reproduce the Problem
see this line in package.json: "packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
Solution:
change this line in package.json: "packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610" with "packageManager": "[email protected]",
remove the node_modules
execute yarn cache clean
Create a .yarnrc.yml and add in it : nodeLinker: node-modules
do a yarn install
The text was updated successfully, but these errors were encountered:
Expected Behavior
Expected to use one of the latest Yarn LTS version
Actual Behavior
We are using the legacy yarn 1.22 forced in the package.json. It should be removed or changed to the latest yarn lts version.
It takes forever to install the project and there are security problems with the legacy version.
Steps to Reproduce the Problem
Solution:
The text was updated successfully, but these errors were encountered: