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.6.3 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.6.2 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.6.1 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.6 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.5.19 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.5.18 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.5.17 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.5.16 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.5.15 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.5.14 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.5.13 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.5.12 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.5.11 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.5.10 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.5.9 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.5.8 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.5.7 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.5.6 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.5.5 node_modules/bower/lib/commands/update.js
trusty-festivity-extension-2.5.4 node_modules/bower/lib/commands/update.js