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
NodeJSManager wrongly claims Node 16 is not supported
And we shipt Node.js 16.x as our bundled.
The idea of static list of supported versions is plain wrong as we have
no idea which editor which version of Node.js supports it's best to
remove the static list and just say "recent" version is required when
using the "system" Node.
Copy file name to clipboardExpand all lines: org.eclipse.wildwebdeveloper.embedder.node/src/org/eclipse/wildwebdeveloper/embedder/node/NodeJSManager.java
"Node.js " + version + " is not supported. This will result in editors missing key features.\n"
243
-
+ "Please make sure a supported version of node.js is installed and that your PATH environment variable contains the location to the `node` executable.\n"
244
-
+ "Supported major versions are: " + SUPPORT_NODEJS_MAJOR_VERSIONS.stream()
"Node.js version could not be determined. Please make sure a supported version of node.js is installed, editors may be missing key features otherwise.\n"
255
-
+ "Supported major versions are: " + SUPPORT_NODEJS_MAJOR_VERSIONS.stream()
"Node.js version could not be determined. Please make sure a recent version of node.js is installed, editors may be missing key features otherwise.\n"));
0 commit comments