lasso-require
Version:
Lasso.js plugin to support Node.js style module require in the browser
51 lines (40 loc) • 1.29 kB
JavaScript
var transport = require('lasso-modules-client/transport');
exports.create = function(config, lasso) {
return {
properties: {
'parentPath': 'string',
'childName': 'string',
'childVersion': 'string',
'parentDir': 'string'
},
init(lassoContext) {
},
getDir: function() {
return this.parentDir;
},
read: function(context) {
return transport.codeGenerators.installed(
this.parentPath,
this.childName,
this.childVersion,
{
modulesRuntimeGlobal: config.modulesRuntimeGlobal
});
},
getLastModified: function(lassoContext, callback) {
callback(null, -1);
},
getUnbundledTargetPrefix: function(lassoContext) {
return config.unbundledTargetPrefix;
},
getUnbundledTarget: function() {
return 'lasso-modules-meta';
},
getSourceFile: function() {
return this._sourceFile;
},
calculateKey: function() {
return 'modules-installed:' + this.parentPath + '|' + this.childName + '|' + this.childVersion;
}
};
};