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
The latest version of PNPM is 10.5.2 and our package.json limits us to 10.0.0. Also our dev environment setup says to just npm install -g pnpm so that does not work well.
❯ pnpm install
ERR_PNPM_UNSUPPORTED_ENGINE Unsupported environment (bad pnpm and/or Node.js version)
Your pnpm version is incompatible with "/Users/bryanp/Development/git/nciocpl/ncids".
Expected version: >=8.0.0 <10.0.0
Got: 10.5.2
This is happening because the package's manifest has an engines.pnpm field specified.
To fix this issue, install the required pnpm version globally.
To install the latest version of pnpm, run "pnpm i -g pnpm".
To check your pnpm version, run "pnpm -v".
The text was updated successfully, but these errors were encountered:
Issue description
The latest version of PNPM is 10.5.2 and our package.json limits us to 10.0.0. Also our dev environment setup says to just
npm install -g pnpm
so that does not work well.The text was updated successfully, but these errors were encountered: