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
diff options
context:
space:
mode:
authorForrest L Norvell <forrest@npmjs.com>2014-11-08 04:24:52 +0300
committerForrest L Norvell <forrest@npmjs.com>2014-11-08 04:24:52 +0300
commitd435221fa8b103509261835790f65c77d495d831 (patch)
tree93e9f772dbdf744d9d42744014a3d7613ebf4c32 /lib/npm.js
parente34a7b6b7371b1893a062f627ae8e168546d7264 (diff)
isntall there really is?
Who, that little guy? I wouldn't worry about that little guy.
Diffstat (limited to 'lib/npm.js')
-rw-r--r--lib/npm.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/npm.js b/lib/npm.js
index 7727e3d23..b248bc186 100644
--- a/lib/npm.js
+++ b/lib/npm.js
@@ -140,16 +140,21 @@ var commandCache = {}
]
, plumbing = [ "build"
, "unbuild"
- , "isntall"
, "xmas"
, "substack"
, "visnup"
]
- , fullList = npm.fullList = cmdList.concat(aliasNames).filter(function (c) {
+ , littleGuys = [ "isntall" ]
+ , fullList = cmdList.concat(aliasNames).filter(function (c) {
return plumbing.indexOf(c) === -1
})
, abbrevs = abbrev(fullList)
+// we have our reasons
+fullList = npm.fullList = fullList.filter(function (c) {
+ return littleGuys.indexOf(c) === -1
+})
+
npm.spinner =
{ int: null
, started: false