PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
commands
var Project = require('../core/Project'); var defaultConfig = require('../config'); function update(logger, names, options, config) { var project; options = options || {}; config = defaultConfig(config); project = new Project(config, logger); // If names is an empty array, null them if (names && !names.length) { names = null; } return project.update(names, options); } // ------------------- update.readOptions = function(argv) { var cli = require('../util/cli'); var options = cli.readOptions( { 'force-latest': { type: Boolean, shorthand: 'F' }, production: { type: Boolean, shorthand: 'p' } }, argv ); var names = options.argv.remain.slice(1); delete options.argv; return [names, options]; }; module.exports = update;
[-] home.js
[edit]
[-] lookup.js
[edit]
[+]
..
[+]
cache
[-] link.js
[edit]
[-] install.js
[edit]
[-] login.js
[edit]
[-] info.js
[edit]
[-] uninstall.js
[edit]
[-] init.js
[edit]
[-] prune.js
[edit]
[-] search.js
[edit]
[-] list.js
[edit]
[-] index.js
[edit]
[-] update.js
[edit]
[-] help.js
[edit]
[-] unregister.js
[edit]
[-] register.js
[edit]
[-] version.js
[edit]