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
{{ message }}
This repository has been archived by the owner on Dec 17, 2019. It is now read-only.
when task is configured with latest node.js & npm, it throws below error,
Running "whitesource:web" (whitesource) task
module.js:544
throw err;
^
Error: Cannot find module '/Users/xxx/MyProjects/projDirectory/node_modules/grunt-whitesource/node_modules/whitesource/bin/whitesource.js'
at Function.Module._resolveFilename (module.js:542:15)
at Function.Module._load (module.js:472:25)
at Function.Module.runMain (module.js:682:10)
at startup (bootstrap_node.js:191:16)
at bootstrap_node.js:613:3
Error: Whitesource failed to run
This happens because execution script of the task is contains the absolute hard coded path for the dependent script and is not per latest node standards
node ./node_modules/grunt-whitesource/node_modules/whitesource/bin/whitesource.js run
this line should be modified and fixed to support newer versions of npm and node
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
when task is configured with latest node.js & npm, it throws below error,
This happens because execution script of the task is contains the absolute hard coded path for the dependent script and is not per latest node standards
node ./node_modules/grunt-whitesource/node_modules/whitesource/bin/whitesource.js run
this line should be modified and fixed to support newer versions of npm and node
The text was updated successfully, but these errors were encountered: