blob: cd9b40dac875be38c1da213054823a65a4637e60 (
plain)
1
2
3
4
5
6
7
8
9
10
|
--- a/lib/pluginManager.js
+++ b/lib/pluginManager.js
@@ -324,6 +324,7 @@ class PluginManager {
else {
this.searchPaths.add("/usr/local/lib/node_modules");
this.searchPaths.add("/usr/lib/node_modules");
+ this.searchPaths.add("/usr/lib/node");
this.searchPaths.add(child_process_1.execSync("/bin/echo -n \"$(npm --no-update-notifier -g prefix)/lib/node_modules\"").toString("utf8"));
}
}
|