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@izs.me>2011-03-05 04:42:52 +0300
committerisaacs <i@izs.me>2011-03-22 01:55:50 +0300
commit93c1486e2a783fc3b11ec71e2d4b8fb2cf6c44e2 (patch)
treef2bfa82f0b7dbd6216d77248bea76f1e1ba87bef /npm.js
parent53f9c1070d23375c5f711d1ec37054aa10f5d6bd (diff)
Refuse to handle pathological dependency cycles
Diffstat (limited to 'npm.js')
-rw-r--r--npm.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/npm.js b/npm.js
index bc4556dc9..b62b84f57 100644
--- a/npm.js
+++ b/npm.js
@@ -28,6 +28,7 @@ npm.E404 = {}
npm.EPUBLISHCONFLICT = {}
npm.EJSONPARSE = {}
npm.EISGIT = {}
+npm.ECYCLE = {}
try {
@@ -62,7 +63,6 @@ var commandCache = {}
// these are filenames in ./lib
, cmdList = [ "install"
, "uninstall"
- , "build"
, "link"
, "cache"
, "config"