Sha256: cb04817dcca9566d5ac1c2ac30079c556bb3246547e7bb0d50d303cf70cde5c1

Contents?: true

Size: 815 Bytes

Versions: 62

Compression:

Stored size: 815 Bytes

Contents

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;

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
trusty-festivity-extension-2.5.3 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.5.2 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.5.1 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.5.0 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.4.6 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.4.5 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.4.4 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.4.3 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.4.2 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.4.1 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.4.0 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.3.30 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.3.29 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.3.28 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.3.27 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.3.26 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.3.25 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.3.24 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.3.23 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.3.22 node_modules/bower/lib/commands/update.js