From 063a22222d4e2f442355f4a216ed02a9568db276 Mon Sep 17 00:00:00 2001 From: eps1lon Date: Tue, 27 Apr 2021 11:55:49 +0200 Subject: [PATCH 1/3] Update supported devEngines --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index aecd84fd71203..ef4848ee6f282 100644 --- a/package.json +++ b/package.json @@ -100,7 +100,7 @@ "yargs": "^15.3.1" }, "devEngines": { - "node": "8.x || 9.x || 10.x || 11.x || 12.x || 13.x || 14.x || 15.x" + "node": "^12.20 || 13.x || 14.x || 15.x || 16.x" }, "jest": { "testRegex": "/scripts/jest/dont-run-jest-directly\\.js$" From 777b778f12b4351bce51433ddac8cffabd7dc6af Mon Sep 17 00:00:00 2001 From: eps1lon Date: Tue, 27 Apr 2021 12:14:51 +0200 Subject: [PATCH 2/3] Works with 12.17 CI uses 12.19 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ef4848ee6f282..74be41ec3c157 100644 --- a/package.json +++ b/package.json @@ -100,7 +100,7 @@ "yargs": "^15.3.1" }, "devEngines": { - "node": "^12.20 || 13.x || 14.x || 15.x || 16.x" + "node": "^12.17.0 || 13.x || 14.x || 15.x || 16.x" }, "jest": { "testRegex": "/scripts/jest/dont-run-jest-directly\\.js$" From c683596b38c1cd1ccba5ab65198ec91b66f0226b Mon Sep 17 00:00:00 2001 From: eps1lon Date: Tue, 27 Apr 2021 17:24:39 +0200 Subject: [PATCH 3/3] Use lowest possible node version in codesandbox --- .codesandbox/ci.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.codesandbox/ci.json b/.codesandbox/ci.json index 8fdab3e563d60..97114903039b6 100644 --- a/.codesandbox/ci.json +++ b/.codesandbox/ci.json @@ -1,6 +1,7 @@ { "packages": ["packages/react", "packages/react-dom", "packages/scheduler"], "buildCommand": "build --type=NODE react/index,react-dom/index,react-dom/server,react-dom/test-utils,scheduler/index,scheduler/unstable_no_dom,react/jsx-runtime,react/jsx-dev-runtime", + "node": "12", "publishDirectory": { "react": "build/node_modules/react", "react-dom": "build/node_modules/react-dom",