Skip to content

Commit ef6e138

Browse files
authored
Update pnpm version
When running `npm run dev` I get ```bash > dev > pnpm run -F frontend dev  ERR_PNPM_UNSUPPORTED_ENGINE  Unsupported environment (bad pnpm and/or Node.js version) Your pnpm version is incompatible with "/Users/no/code/inkathon". Expected version: 8 Got: 9.0.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". ``` adding a `>=` makes it runnable with 9.0.2 and i assume it is a safe alteration
1 parent 466248b commit ef6e138

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
],
1111
"engines": {
1212
"node": ">=18 <=20",
13-
"pnpm": "8"
13+
"pnpm": ">=8"
1414
},
1515
"scripts": {
1616
"dev": "pnpm run -F frontend dev",

0 commit comments

Comments
 (0)