Files
bower/lib/resolve/Manager.js
André Cruz e5c4391900 Fix some bugs.
2013-05-04 16:32:31 +01:00

28 lines
618 B
JavaScript

var config = require('../../config');
var Manager = function (options) {
options = options || {};
this._offline = !!options.offline;
this._config = options.config || config;
};
// -----------------
Manager.prototype.install = function (endpoints) {
this._packages = {};
// If some endpoints were passed, use those
// Otherwise grab the ones specified in the json
// Check which packages are already installed
// and not install those if the target range is matched
// Query the PackageRepository
};
Manager.prototype._onResolve = function () {
};
module.exports = Manager;