mirror of
https://github.com/bower/bower.git
synced 2026-01-14 08:47:54 -05:00
50 lines
1.4 KiB
JavaScript
50 lines
1.4 KiB
JavaScript
var endpointParser = require('bower-endpoint-parser');
|
|
var Project = require('../core/Project');
|
|
var Tracker = require('../util/analytics').Tracker;
|
|
var defaultConfig = require('../config');
|
|
|
|
function install(logger, endpoints, options, config) {
|
|
var project;
|
|
var decEndpoints;
|
|
var tracker;
|
|
|
|
options = options || {};
|
|
config = defaultConfig(config);
|
|
if (options.save === undefined) {
|
|
options.save = config.defaultSave;
|
|
}
|
|
project = new Project(config, logger);
|
|
tracker = new Tracker(config);
|
|
|
|
// Convert endpoints to decomposed endpoints
|
|
endpoints = endpoints || [];
|
|
decEndpoints = endpoints.map(function (endpoint) {
|
|
return endpointParser.decompose(endpoint);
|
|
});
|
|
tracker.trackDecomposedEndpoints('install', decEndpoints);
|
|
|
|
return project.install(decEndpoints, options, config);
|
|
}
|
|
|
|
// -------------------
|
|
|
|
install.readOptions = function (argv) {
|
|
var cli = require('../util/cli');
|
|
|
|
var options = cli.readOptions({
|
|
'force-latest': { type: Boolean, shorthand: 'F'},
|
|
'production': { type: Boolean, shorthand: 'p' },
|
|
'save': { type: Boolean, shorthand: 'S' },
|
|
'save-dev': { type: Boolean, shorthand: 'D' },
|
|
'save-exact': { type: Boolean, shorthand: 'E' }
|
|
}, argv);
|
|
|
|
var packages = options.argv.remain.slice(1);
|
|
|
|
delete options.argv;
|
|
|
|
return [packages, options];
|
|
};
|
|
|
|
module.exports = install;
|