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
Somethere in code of node-source-map-support there is a check like (env.SOME_VAR === undefinded)
But in windows there is no global variable env, so this code falls out with an error.
Also, Windows 7 is not supported by the latest versions of NodeJS (14 and higher), so there is no way to update the Node.
P.S. Perhaps the problem is in the code of some kind of dependency (since I could not find such a code in the sources of this repository), but the error is returned by source-map-support = (
What to fix: Change everywhere in the code env. on process.env.
The text was updated successfully, but these errors were encountered:
Somethere in code of node-source-map-support there is a check like
(env.SOME_VAR === undefinded)
But in windows there is no global variable
env
, so this code falls out with an error.Also, Windows 7 is not supported by the latest versions of NodeJS (14 and higher), so there is no way to update the Node.
P.S. Perhaps the problem is in the code of some kind of dependency (since I could not find such a code in the sources of this repository), but the error is returned by source-map-support = (
What to fix: Change everywhere in the code
env.
onprocess.env.
The text was updated successfully, but these errors were encountered: