Skip to content

Commit

Permalink
fix(node): pnpm 8.6 needs node 16.14 (#53677)
Browse files Browse the repository at this point in the history
The `pnpm` version was recently updated to `8.6`, however the node version was left at `16.8`. `pnpm@8.6` requires at least `node@16.14` ([source](https://github.com/pnpm/pnpm/blob/main/pnpm/package.json#L145)).

This fixes the engines spec to avoid conflicting versions.
  • Loading branch information
tknickman committed Aug 7, 2023
1 parent 5891501 commit 3db5c16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@
"@types/react-dom": "18.2.4"
},
"engines": {
"node": ">=16.8.0",
"node": ">=16.14.0",
"pnpm": "8.6.11"
},
"packageManager": "pnpm@8.6.11"
Expand Down

0 comments on commit 3db5c16

Please sign in to comment.