From fef40c061ec7db03b6b0faa7608788d625cf78db Mon Sep 17 00:00:00 2001 From: Ilja Daderko Date: Tue, 25 Dec 2018 19:05:31 +0200 Subject: [PATCH] Allow node 11 as devEngine (#14450) Using node 11 throws incompatibility error. This fixes it. Only test I performed was to run `yarn build -- --type=RN_OSS` everything seemed ok. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index eb5fe1324ba81..602daa83cc939 100644 --- a/package.json +++ b/package.json @@ -88,7 +88,7 @@ "@mattiasbuelens/web-streams-polyfill": "0.1.0" }, "devEngines": { - "node": "8.x || 9.x || 10.x" + "node": "8.x || 9.x || 10.x || 11.x" }, "jest": { "testRegex": "/scripts/jest/dont-run-jest-directly\\.js$"