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>2010-11-29 06:50:45 +0300
committerisaacs <i@izs.me>2010-11-29 07:30:15 +0300
commit8ce3810e4c099324c7538f0a15ce8b078a1d34b4 (patch)
tree0d69a071a0d7a77be898719bcefe8a486bf3ea03 /npm.js
parent3f65d82fe6d8324b7c07592577f1e26ee3851e1f (diff)
remove "u" : "update" alias. Too confusing.
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 21ba6d148..1d66197b4 100644
--- a/npm.js
+++ b/npm.js
@@ -41,12 +41,12 @@ var commandCache = {}
// short names for common things
, aliases = { "rm" : "uninstall"
, "r" : "uninstall"
+ , "un" : "uninstall"
, "rb" : "rebuild"
, "bn" : "bundle"
, "list" : "ls"
, "ln" : "link"
, "i" : "install"
- , "u" : "update"
, "up" : "update"
, "c" : "config"
}