We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The "yarn-path" option has been set (in .../ui/.yarnrc.yml), but the specified location doesn't exist
Cannot find module '...ui/.yarn/plugins/...' Require stack: - .../yarn/.../yarn.js
We are running different yarn versions but one is pinned in ui/.yarnrc.yml
mv .yarnrc.yml .yarnrc.yml.old yarn set version berry
Add the lines from .yarnrc.yml.old to .yarnrc.yml, except the yarnPath (keep the new line)
yarnPath
yarn install
Commit.
In .gitignore, uncomment yrarn related lines:
**/.yarn/* !.yarn/patches !.yarn/releases !.yarn/plugins !.yarn/sdks !.yarn/versions .pnp.* # .eslintcache .vscode/**
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The "yarn-path" option has been set (in .../ui/.yarnrc.yml), but the specified location doesn't exist
Problem:
We are running different yarn versions but one is pinned in ui/.yarnrc.yml
Solution:
Add the lines from .yarnrc.yml.old to .yarnrc.yml, except the
yarnPath
(keep the new line)yarn install
Commit.
In .gitignore,
uncomment yrarn related lines:
Commit.
The text was updated successfully, but these errors were encountered: