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.
40 lines
1006 B
40 lines
1006 B
13 years ago
|
/*
|
||
|
for each pkg in prefix that isn't a git repo
|
||
|
look for a new version of pkg that satisfies dep
|
||
|
if so, install it.
|
||
|
if not, then update it
|
||
|
*/
|
||
|
|
||
|
module.exports = update
|
||
|
|
||
|
update.usage = "npm update [pkg]"
|
||
|
|
||
|
var npm = require("./npm.js")
|
||
|
, lifecycle = require("./utils/lifecycle.js")
|
||
|
, asyncMap = require("slide").asyncMap
|
||
|
, log = require("./utils/log.js")
|
||
|
|
||
|
// load these, just so that we know that they'll be available, in case
|
||
|
// npm itself is getting overwritten.
|
||
|
, install = require("./install.js")
|
||
|
, build = require("./build.js")
|
||
|
|
||
|
update.completion = npm.commands.outdated.completion
|
||
|
|
||
|
function update (args, cb) {
|
||
|
npm.commands.outdated(args, true, function (er, outdated) {
|
||
|
log(outdated, "outdated updating")
|
||
|
if (er) return cb(er)
|
||
|
|
||
|
asyncMap(outdated, function (ww, cb) {
|
||
|
// [[ dir, dep, has, want ]]
|
||
|
var where = ww[0]
|
||
|
, dep = ww[1]
|
||
|
, want = ww[3]
|
||
|
, what = dep + "@" + want
|
||
|
|
||
|
npm.commands.install(where, what, cb)
|
||
|
}, cb)
|
||
|
})
|
||
|
}
|