959b657903
* chore: remove Node.js patch on Module.globalPaths * chore: update patches Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com>
13 lines
349 B
JavaScript
13 lines
349 B
JavaScript
const Module = require('module');
|
|
|
|
module.exports = (paths) => {
|
|
const nodeModulePaths = Module._nodeModulePaths;
|
|
Module.ignoreGlobalPathsHack = false;
|
|
Module._nodeModulePaths = (from) => {
|
|
if (Module.ignoreGlobalPathsHack) {
|
|
return nodeModulePaths(from);
|
|
} else {
|
|
return nodeModulePaths(from).concat(paths);
|
|
}
|
|
};
|
|
};
|