You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -43,9 +55,9 @@ async function test(): Promise<ValidationResultT> {
43
55
if(result.versionCompare===-1){
44
56
return{
45
57
status: "failure",
46
-
comment:
47
-
"Detected version is older than 12.0.0 "+
48
-
`Minimal required version is 12.0.0. Please update your ${label} installation`,
58
+
comment:rnNodeRange
59
+
? `Detected Node.js version is incompatible with React Native. Required range: ${requiredRange}. Please install a supported Node.js version for your project's React Native.`
60
+
: "Detected version is older than 12.0.0 Minimal required version is 12.0.0. Please update your Node.JS installation",
49
61
};
50
62
}
51
63
@@ -56,7 +68,7 @@ const main: IValidation = {
56
68
label,
57
69
description: toLocale(
58
70
"NodejsCheckDescription",
59
-
"Required for code execution. Minimal version is 12",
71
+
"Required for code execution. Uses React Native's required Node range when available; otherwise minimal version is 12",
0 commit comments