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-04 09:28:25 +0300
committerisaacs <i@izs.me>2011-03-22 01:55:48 +0300
commitce60214c046532b1c91a0595353324fc7faa998d (patch)
tree956fffff5437730a38edaafb226919be94a4a74b /npm.js
parent69ee100f3de7ee58f1865d942bcd983c12d4d9fc (diff)
Remove some now-unnecessary pieces
Diffstat (limited to 'npm.js')
-rw-r--r--npm.js41
1 files changed, 20 insertions, 21 deletions
diff --git a/npm.js b/npm.js
index 0a76810f0..c6d8773d6 100644
--- a/npm.js
+++ b/npm.js
@@ -60,45 +60,44 @@ var commandCache = {}
, aliasNames = Object.keys(aliases)
// these are filenames in ./lib
, cmdList = [ "install"
- , "activate"
- , "deactivate"
, "uninstall"
, "build"
, "link"
+ , "cache"
+ , "config"
+ , "set"
+ , "get"
+ , "update"
+ , "rebuild"
+ , "outdated"
+
, "publish"
, "tag"
, "adduser"
- , "config"
- , "help"
- , "cache"
- , "test"
- , "stop"
- , "start"
- , "restart"
, "unpublish"
- , "ls"
, "owner"
- , "update"
- , "update-dependents"
+ , "deprecate"
+
+ , "help"
+ , "ls"
, "view"
- , "rebuild"
- , "bundle"
- , "outdated"
, "init"
- , "deprecate"
, "version"
, "edit"
, "explore"
, "docs"
, "faq"
- , "run-script"
- , "set"
- , "get"
, "xmas"
- , "unbuild"
+
+ , "test"
+ , "stop"
+ , "start"
+ , "restart"
+ , "run-script"
+
]
, plumbing = [ "build"
- , "update-dependents"
+ , "unbuild"
, "completion"
]
, fullList = npm.fullList = cmdList.concat(aliasNames).filter(function (c) {