Skip to content

Commit

Permalink
fix: set required engine version to 18.18.0 (#1214)
Browse files Browse the repository at this point in the history
## What is this PR doing?

Lowering the version requirements. The playground still seems to run on
this version and allows it to run on (some) more versions of node.

## What problem is it solving?

Allows it to run in WebContainer without warnings

## How is the problem addressed?

Dropping the version slightly.

## Testing Instructions

Run as normal, still works!
  • Loading branch information
kirjavascript authored Apr 11, 2024
1 parent 5896219 commit cb55349
Show file tree
Hide file tree
Showing 13 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18.18.2
v18.18.0
22 changes: 11 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/php-wasm/compile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"type": "module",
"gitHead": "a0eeb66fd5386bb56715fca2b89e9669a5b8618b",
"engines": {
"node": ">=18.18.2",
"node": ">=18.18.0",
"npm": ">=8.11.0"
}
}
2 changes: 1 addition & 1 deletion packages/php-wasm/fs-journal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"license": "GPL-2.0-or-later",
"gitHead": "2f8d8f3cea548fbd75111e8659a92f601cddc593",
"engines": {
"node": ">=18.18.2",
"node": ">=18.18.0",
"npm": ">=8.11.0"
}
}
2 changes: 1 addition & 1 deletion packages/php-wasm/logger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"main": "index.cjs",
"types": "index.d.ts",
"engines": {
"node": ">=18.18.2",
"node": ">=18.18.0",
"npm": ">=8.11.0"
}
}
2 changes: 1 addition & 1 deletion packages/php-wasm/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"types": "index.d.ts",
"gitHead": "2f8d8f3cea548fbd75111e8659a92f601cddc593",
"engines": {
"node": ">=18.18.2",
"node": ">=18.18.0",
"npm": ">=8.11.0"
}
}
2 changes: 1 addition & 1 deletion packages/php-wasm/progress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"types": "index.d.ts",
"gitHead": "2f8d8f3cea548fbd75111e8659a92f601cddc593",
"engines": {
"node": ">=18.18.2",
"node": ">=18.18.0",
"npm": ">=8.11.0"
}
}
2 changes: 1 addition & 1 deletion packages/php-wasm/universal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"license": "GPL-2.0-or-later",
"gitHead": "2f8d8f3cea548fbd75111e8659a92f601cddc593",
"engines": {
"node": ">=18.18.2",
"node": ">=18.18.0",
"npm": ">=8.11.0"
}
}
2 changes: 1 addition & 1 deletion packages/php-wasm/util/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"gitHead": "2f8d8f3cea548fbd75111e8659a92f601cddc593",
"engines": {
"node": ">=18.18.2",
"node": ">=18.18.0",
"npm": ">=8.11.0"
}
}
2 changes: 1 addition & 1 deletion packages/php-wasm/web-service-worker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"types": "src/index.d.ts",
"gitHead": "2f8d8f3cea548fbd75111e8659a92f601cddc593",
"engines": {
"node": ">=18.18.2",
"node": ">=18.18.0",
"npm": ">=8.11.0"
}
}
2 changes: 1 addition & 1 deletion packages/playground/blueprints/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"gitHead": "2f8d8f3cea548fbd75111e8659a92f601cddc593",
"engines": {
"node": ">=18.18.2",
"node": ">=18.18.0",
"npm": ">=8.11.0"
}
}
2 changes: 1 addition & 1 deletion packages/playground/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"types": "index.d.ts",
"gitHead": "2f8d8f3cea548fbd75111e8659a92f601cddc593",
"engines": {
"node": ">=18.18.2",
"node": ">=18.18.0",
"npm": ">=8.11.0"
}
}
2 changes: 1 addition & 1 deletion packages/playground/wordpress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"type": "module",
"private": true,
"engines": {
"node": ">=18.18.2",
"node": ">=18.18.0",
"npm": ">=8.11.0"
},
"dependencies": {
Expand Down

0 comments on commit cb55349

Please sign in to comment.