mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.6 KiB
55 lines
1.6 KiB
|
|
// remove a package.
|
|
|
|
module.exports = uninstall
|
|
|
|
uninstall.usage = "npm uninstall <name>[@<version> [<name>[@<version>] ...]"
|
|
+ "\nnpm rm <name>[@<version> [<name>[@<version>] ...]"
|
|
|
|
uninstall.completion = require("./utils/completion/installed-shallow.js")
|
|
|
|
var fs = require("graceful-fs")
|
|
, log = require("./utils/log.js")
|
|
, readJson = require("./utils/read-json.js")
|
|
, path = require("path")
|
|
, npm = require("./npm.js")
|
|
, semver = require("semver")
|
|
, asyncMap = require("slide").asyncMap
|
|
|
|
function uninstall (args, cb) {
|
|
// this is super easy
|
|
// get the list of args that correspond to package names in either
|
|
// the global npm.dir,
|
|
// then call unbuild on all those folders to pull out their bins
|
|
// and mans and whatnot, and then delete the folder.
|
|
|
|
var nm = npm.dir
|
|
if (args.length === 1 && args[0] === ".") args = []
|
|
if (args.length) return uninstall_(args, nm, cb)
|
|
|
|
// remove this package from the global space, if it's installed there
|
|
if (npm.config.get("global")) return cb(uninstall.usage)
|
|
readJson(path.resolve(npm.prefix, "package.json"), function (er, pkg) {
|
|
if (er) return cb(uninstall.usage)
|
|
uninstall_( [pkg.name]
|
|
, npm.dir
|
|
, cb )
|
|
})
|
|
|
|
}
|
|
|
|
function uninstall_ (args, nm, cb) {
|
|
asyncMap(args, function (arg, cb) {
|
|
var p = path.resolve(nm, arg)
|
|
fs.lstat(p, function (er) {
|
|
if (er) {
|
|
log.warn(arg, "Not installed in "+nm)
|
|
return cb(null, [])
|
|
}
|
|
cb(null, p)
|
|
})
|
|
}, function (er, folders) {
|
|
if (er) return cb(er)
|
|
asyncMap(folders, npm.commands.unbuild, cb)
|
|
})
|
|
}
|
|
|