39baf68790
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> Co-authored-by: Samuel Attard <samuel.r.attard@gmail.com> Co-authored-by: loc <andy@slack-corp.com> Co-authored-by: Robo <hop2deep@gmail.com> Co-authored-by: Jeremy Apthorp <nornagon@nornagon.net>
26 lines
999 B
Diff
26 lines
999 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Cheng Zhao <zcbenz@gmail.com>
|
|
Date: Sun, 14 Apr 2013 15:54:46 +0800
|
|
Subject: Make Module.globalPaths a reference.
|
|
|
|
We need to hack the search paths of the require function so we can
|
|
load libraries from embedded applications without modifications of
|
|
node's module code.
|
|
|
|
(cherry picked from commit 76ba048c37588ee32636817fa7b8dffc64330cbf)
|
|
|
|
diff --git a/lib/internal/modules/cjs/loader.js b/lib/internal/modules/cjs/loader.js
|
|
index ed433e1b8744ea204ddc3d343f776cb3d77dd05f..b83788989198cea230ac2eed10953416d956202c 100644
|
|
--- a/lib/internal/modules/cjs/loader.js
|
|
+++ b/lib/internal/modules/cjs/loader.js
|
|
@@ -1275,8 +1275,8 @@ Module._initPaths = function() {
|
|
|
|
modulePaths = paths;
|
|
|
|
- // Clone as a shallow copy, for introspection.
|
|
- Module.globalPaths = modulePaths.slice(0);
|
|
+ // clone as a shallow copy, for introspection.
|
|
+ Module.globalPaths = modulePaths;
|
|
};
|
|
|
|
Module._preloadModules = function(requests) {
|