[BUG] yarn 2 pnp issues
regevbr opened this issue · 0 comments
regevbr commented
The library requires the lru-cache and semver packages but they are not declared as dependencies.
This is done at
Line 3 in 308ca27
Line 4 in 308ca27
Because yarn 2 uses PlugNPlay, it is not allowed to use non declared dependencies, causing my CI tools to fail
Temp fix is to add to .yarnrc.yml
packageExtensions:
"@npmcli/git@*":
dependencies:
lru-cache: "*"
semver: "*"