Skip to content

Commit 721cdf3

Browse files
author
Luca Forstner
committed
node 8
1 parent 1aaeb2e commit 721cdf3

File tree

3 files changed

+362
-2216
lines changed

3 files changed

+362
-2216
lines changed

packages/node/test/manual/webpack-async-context/npm-build.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ if (Number(process.versions.node.split('.')[0]) >= 18) {
77
process.exit(0);
88
}
99

10+
// Webpack test does not work in Node 8 and below.
11+
if (Number(process.versions.node.split('.')[0]) <= 8) {
12+
process.exit(0);
13+
}
14+
1015
// biome-ignore format: Follow-up for prettier
1116
webpack(
1217
{

packages/node/test/manual/webpack-async-context/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"main": "index.js",
55
"license": "MIT",
66
"dependencies": {
7-
"webpack": "^4.47.0"
7+
"webpack": "^5.90.0"
88
},
99
"volta": {
1010
"extends": "../../../../../package.json"

0 commit comments

Comments
 (0)