how to use yarnrc.yml

I found this
nodeLinker: node-modules

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
spec: "@yarnpkg/plugin-workspace-tools"
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"

yarnPath: .yarn/releases/yarn-berry.cjs
nodeLinker: node-modules

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
spec: "@yarnpkg/plugin-workspace-tools"
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"

yarnPath: .yarn/releases/yarn-berry.cjs
in a yarnrc.yml and the current locally installed version of yarn-berry seems to be broken. I'm unfamiliar with this tooling and was wondering how I'd go about updating the version of yarn and the plugins. Is this something I can do with the CLI?
1 Reply
alan
alan3mo ago
found that it can be fixed with yarn set version latest per https://github.com/yarnpkg/berry/issues/2938#issuecomment-855838927
GitHub
[Bug] Unable to install TypeScript 4.3.2 · Issue #2938 · yarnpkg/be...
I'd be willing to implement a fix Describe the bug TypeScript 4.3.2 was released today. It's not possible to install it because of an issue with plugin-compat: To Reproduce yarn init yarn s...