UNPKG

lasso

Version:

Lasso.js is a build tool and runtime library for building and bundling all of the resources needed by a web application

54 lines (43 loc) 1.74 kB
function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, arguments); return new Promise(function (resolve, reject) { function step(key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { return Promise.resolve(value).then(function (value) { step("next", value); }, function (err) { step("throw", err); }); } } return step("next"); }); }; } var transport = require('lasso-modules-client/transport'); exports.create = function (config, lasso) { return { properties: { 'path': 'string', 'paths': 'string[]' }, init() { var _this = this; return _asyncToGenerator(function* () { if (!_this.paths) { _this.paths = []; } if (_this.path) { _this.paths.push(_this.path); } })(); }, getDir: function () { return null; }, read: function (context) { return transport.codeGenerators.searchPath(this.paths, { modulesRuntimeGlobal: config.modulesRuntimeGlobal }); }, getLastModified(lassoContext) { return _asyncToGenerator(function* () { return -1; })(); }, getUnbundledTargetPrefix: function (lassoContext) { return config.unbundledTargetPrefix; }, getUnbundledTarget: function () { return 'lasso-modules-meta'; }, calculateKey() { return 'modules-search-path:' + JSON.stringify(this.paths); } }; };