Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/npm.js
diff options
context:
space:
mode:
authorisaacs <i@foohack.com>2009-10-05 23:07:46 +0400
committerisaacs <i@foohack.com>2009-10-05 23:07:46 +0400
commitfffab2f5e5dd6769efb0b663a5a6fd5af7040351 (patch)
tree8af0be958b0629e4d935bf83105f54194ae0d39b /npm.js
parentb806f7039085ddf084499de4e6a956a9ebefdb66 (diff)
Missed some include()s.
Diffstat (limited to 'npm.js')
-rwxr-xr-xnpm.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/npm.js b/npm.js
index 022dddd1f..1d559abb8 100755
--- a/npm.js
+++ b/npm.js
@@ -6,9 +6,9 @@
var npm = exports;
var http = require("/http.js");
-include("/utils.js");
-include("./src/queue.js");
-include("./src/fetch.js");
+node.mixin(require("/utils.js"));
+node.mixin(require("./src/queue.js"));
+node.mixin(require("./src/fetch.js"));
var CATALOG = {};
var REQS = [], INSTALL_SET = {}, INSTALL_OPTS = {};