From 088239c388de8177b66acfd656140b52007f0fe5 Mon Sep 17 00:00:00 2001 From: Mike Hardy Date: Fri, 11 Feb 2022 13:23:19 -0500 Subject: [PATCH] build(deps): bump minimum node to v12 react-native apparently still works with v12, the only changelog note I found was that v12 is the current minimum: https://github.com/facebook/react-native/blob/main/CHANGELOG.md#breaking-1 I do not believe this is a breaking change here because react-native already required it --- packages/cli-doctor/src/tools/versionRanges.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli-doctor/src/tools/versionRanges.ts b/packages/cli-doctor/src/tools/versionRanges.ts index a6b299912..7f99f1987 100644 --- a/packages/cli-doctor/src/tools/versionRanges.ts +++ b/packages/cli-doctor/src/tools/versionRanges.ts @@ -1,6 +1,6 @@ export default { // Common - NODE_JS: '>= 8.3', + NODE_JS: '>= 12', YARN: '>= 1.10.x', NPM: '>= 4.x', WATCHMAN: '4.x',