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

49 lines (39 loc) 1.65 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'); var nodePath = require('path'); exports.create = function (config, lasso) { return { properties: { 'dir': 'string', 'main': 'string' }, init() { return _asyncToGenerator(function* () {})(); }, getDir: function () { return nodePath.dirname(this._sourceFile); }, read: function (context) { return transport.codeGenerators.main(this.dir, this.main, { modulesRuntimeGlobal: config.modulesRuntimeGlobal }); }, getLastModified(lassoContext) { return _asyncToGenerator(function* () { return -1; })(); }, getSourceFile: function () { return this._sourceFile; }, calculateKey() { return 'modules-main:' + this.dir + '|' + this.main; }, getUnbundledTargetPrefix: function (lassoContext) { return config.unbundledTargetPrefix; }, getUnbundledTarget: function () { return 'lasso-modules-meta'; } }; };