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-03-06 04:25:39 +0300
committerisaacs <i@izs.me>2010-03-06 04:29:05 +0300
commit40ba991a6dae7e4c557dc826c0905ddc96f2c0eb (patch)
tree791c55046d7ba7d9325aaf04fe2eddab23c55645 /npm.js
parent115da6bcd8299c9639f9ecbbd839b09889c96ad8 (diff)
alias 'uninstall' to 'rm' since that's so much easier to type
Diffstat (limited to 'npm.js')
-rwxr-xr-xnpm.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/npm.js b/npm.js
index e8ba75bf5..667d92a28 100755
--- a/npm.js
+++ b/npm.js
@@ -24,6 +24,7 @@ npm.moduleName = moduleName;
npm[c] = require("./lib/"+c);
});
npm.list = npm.ls;
+npm.rm = npm.uninstall;
var registry = {};