Skip to content

Commit

Permalink
Merge pull request #3263 from quantified-uncertainty/allow-node-22
Browse files Browse the repository at this point in the history
Allow node >v20 in package.json files
  • Loading branch information
berekuk authored May 12, 2024
2 parents aad3f59 + 3fdc033 commit 56a2dcf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.9.5-0",
"license": "MIT",
"engines": {
"node": "20.x"
"node": ">=20.x"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/hub/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.1.0",
"private": true,
"engines": {
"node": "20.x"
"node": ">=20.x"
},
"scripts": {
"db:migrate:dev": "PRISMA_HIDE_UPDATE_MESSAGE=1 prisma migrate dev",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.2.2",
"license": "MIT",
"engines": {
"node": "20.x"
"node": ">=20.x"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"license": "MIT",
"engines": {
"node": "20.x"
"node": ">=20.x"
},
"scripts": {
"dev": "next dev",
Expand Down

0 comments on commit 56a2dcf

Please sign in to comment.