mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-25 14:57:38 +00:00
bundle fixes
This commit is contained in:
parent
8b6171fc02
commit
ee02380bbf
27
dist/system-amd-production.js
vendored
27
dist/system-amd-production.js
vendored
@ -13,11 +13,13 @@ global.upgradeSystemLoader = function() {
|
||||
SystemJS Core
|
||||
Adds normalization to the import function, as well as __useDefault support
|
||||
*/
|
||||
(function() {
|
||||
(function(global) {
|
||||
// check we have System
|
||||
if (typeof System == 'undefined')
|
||||
throw 'System not defined. Include the `es6-module-loader.js` polyfill before SystemJS.';
|
||||
|
||||
var curSystem = System;
|
||||
|
||||
/*
|
||||
__useDefault
|
||||
|
||||
@ -65,7 +67,23 @@ global.upgradeSystemLoader = function() {
|
||||
});
|
||||
}
|
||||
|
||||
})();
|
||||
// define exec for custom instan
|
||||
System.__exec = function(load) {
|
||||
try {
|
||||
Function('global', 'with(global) { ' + load.source + ' \n }'
|
||||
+ (load.address && !load.source.match(/\/\/[@#] ?(sourceURL|sourceMappingURL)=([^\n'"]+)/)
|
||||
? '\n//# sourceURL=' + load.address : '')).call(global, global);
|
||||
}
|
||||
catch(e) {
|
||||
if (e.name == 'SyntaxError')
|
||||
e.message = 'Evaluating ' + load.address + '\n\t' + e.message;
|
||||
throw e;
|
||||
}
|
||||
// traceur overwrites System - write it back
|
||||
if (load.name == '@traceur')
|
||||
global.System = curSystem;
|
||||
}
|
||||
})(typeof window == 'undefined' ? global : window);
|
||||
/*
|
||||
SystemJS map support
|
||||
|
||||
@ -317,8 +335,10 @@ global.upgradeSystemLoader = function() {
|
||||
.then(function(normalized) {
|
||||
System.bundles[normalized] = System.bundles[normalized] || System.bundles[b];
|
||||
return System.load(normalized);
|
||||
})
|
||||
.then(function() {
|
||||
return '';
|
||||
});
|
||||
return System.import(b).then(function() { return ''; });
|
||||
}
|
||||
return systemFetch.apply(this, arguments);
|
||||
}
|
||||
@ -337,6 +357,7 @@ global.upgradeSystemLoader = function() {
|
||||
return {
|
||||
deps: [],
|
||||
execute: function() {
|
||||
System.__exec(load);
|
||||
return new Module({});
|
||||
}
|
||||
};
|
||||
|
||||
2
dist/system-amd-production.min.js
vendored
2
dist/system-amd-production.min.js
vendored
File diff suppressed because one or more lines are too long
65
dist/system.js
vendored
65
dist/system.js
vendored
@ -13,11 +13,13 @@ global.upgradeSystemLoader = function() {
|
||||
SystemJS Core
|
||||
Adds normalization to the import function, as well as __useDefault support
|
||||
*/
|
||||
(function() {
|
||||
(function(global) {
|
||||
// check we have System
|
||||
if (typeof System == 'undefined')
|
||||
throw 'System not defined. Include the `es6-module-loader.js` polyfill before SystemJS.';
|
||||
|
||||
var curSystem = System;
|
||||
|
||||
/*
|
||||
__useDefault
|
||||
|
||||
@ -65,7 +67,23 @@ global.upgradeSystemLoader = function() {
|
||||
});
|
||||
}
|
||||
|
||||
})();
|
||||
// define exec for custom instan
|
||||
System.__exec = function(load) {
|
||||
try {
|
||||
Function('global', 'with(global) { ' + load.source + ' \n }'
|
||||
+ (load.address && !load.source.match(/\/\/[@#] ?(sourceURL|sourceMappingURL)=([^\n'"]+)/)
|
||||
? '\n//# sourceURL=' + load.address : '')).call(global, global);
|
||||
}
|
||||
catch(e) {
|
||||
if (e.name == 'SyntaxError')
|
||||
e.message = 'Evaluating ' + load.address + '\n\t' + e.message;
|
||||
throw e;
|
||||
}
|
||||
// traceur overwrites System - write it back
|
||||
if (load.name == '@traceur')
|
||||
global.System = curSystem;
|
||||
}
|
||||
})(typeof window == 'undefined' ? global : window);
|
||||
/*
|
||||
SystemJS Formats
|
||||
|
||||
@ -93,8 +111,6 @@ global.upgradeSystemLoader = function() {
|
||||
System.format = {};
|
||||
System.formats = [];
|
||||
|
||||
var curSystem = System;
|
||||
|
||||
if (typeof window != 'undefined') {
|
||||
var curScript = document.getElementsByTagName('script');
|
||||
curScript = curScript[curScript.length - 1];
|
||||
@ -176,23 +192,7 @@ global.upgradeSystemLoader = function() {
|
||||
throw new TypeError('No format found for ' + (format ? format : load.address));
|
||||
|
||||
// now invoke format instantiation
|
||||
function exec() {
|
||||
try {
|
||||
Function('global', 'with(global) { ' + load.source + ' \n }'
|
||||
+ (load.address && !load.source.match(/\/\/[@#] ?(sourceURL|sourceMappingURL)=([^\n'"]+)/)
|
||||
? '\n//# sourceURL=' + load.address : '')).call(global, global);
|
||||
}
|
||||
catch(e) {
|
||||
if (e.name == 'SyntaxError')
|
||||
e.message = 'Evaluating ' + load.address + '\n\t' + e.message;
|
||||
throw e;
|
||||
}
|
||||
|
||||
// traceur overwrites System - write it back
|
||||
if (load.name == '@traceur')
|
||||
global.System = curSystem;
|
||||
}
|
||||
var deps = curFormat.deps(load, global, exec);
|
||||
var deps = curFormat.deps(load, global);
|
||||
|
||||
// remove duplicates from deps first
|
||||
for (var i = 0; i < deps.length; i++)
|
||||
@ -202,7 +202,7 @@ global.upgradeSystemLoader = function() {
|
||||
return {
|
||||
deps: deps,
|
||||
execute: function() {
|
||||
var output = curFormat.execute.call(this, Array.prototype.splice.call(arguments, 0), load, global, exec);
|
||||
var output = curFormat.execute.call(this, Array.prototype.splice.call(arguments, 0), load, global);
|
||||
|
||||
if (output instanceof global.Module)
|
||||
return output;
|
||||
@ -320,7 +320,7 @@ global.upgradeSystemLoader = function() {
|
||||
detect: function(load) {
|
||||
return !!load.source.match(amdRegEx);
|
||||
},
|
||||
deps: function(load, global, exec) {
|
||||
deps: function(load, global) {
|
||||
|
||||
var deps;
|
||||
var meta = load.metadata;
|
||||
@ -391,7 +391,7 @@ global.upgradeSystemLoader = function() {
|
||||
delete global.module;
|
||||
delete global.exports;
|
||||
|
||||
exec();
|
||||
System.__exec(load);
|
||||
|
||||
// deps not defined for an AMD module that defines a different name
|
||||
deps = deps || [];
|
||||
@ -439,7 +439,7 @@ global.upgradeSystemLoader = function() {
|
||||
cjsRequireRegEx.lastIndex = 0;
|
||||
return !!(cjsRequireRegEx.exec(load.source) || cjsExportsRegEx.exec(load.source));
|
||||
},
|
||||
deps: function(load, global, exec) {
|
||||
deps: function(load, global) {
|
||||
cjsExportsRegEx.lastIndex = 0;
|
||||
cjsRequireRegEx.lastIndex = 0;
|
||||
|
||||
@ -457,7 +457,7 @@ global.upgradeSystemLoader = function() {
|
||||
|
||||
return deps;
|
||||
},
|
||||
execute: function(depNames, load, global, exec) {
|
||||
execute: function(depNames, load, global) {
|
||||
var dirname = load.address.split('/');
|
||||
dirname.pop();
|
||||
dirname = dirname.join('/');
|
||||
@ -484,7 +484,7 @@ global.upgradeSystemLoader = function() {
|
||||
|
||||
load.source = glString + load.source;
|
||||
|
||||
exec();
|
||||
System.__exec(load);
|
||||
|
||||
delete global._g;
|
||||
|
||||
@ -520,7 +520,7 @@ global.upgradeSystemLoader = function() {
|
||||
detect: function() {
|
||||
return true;
|
||||
},
|
||||
deps: function(load, global, exec) {
|
||||
deps: function(load, global) {
|
||||
var match, deps;
|
||||
if (match = load.source.match(globalShimRegEx)) {
|
||||
deps = match[2].match(globalImportRegEx);
|
||||
@ -543,7 +543,7 @@ global.upgradeSystemLoader = function() {
|
||||
}
|
||||
return deps;
|
||||
},
|
||||
execute: function(depNames, load, global, exec) {
|
||||
execute: function(depNames, load, global) {
|
||||
var globalExport = load.metadata.globalExport;
|
||||
|
||||
// first, we add all the dependency module properties to the global
|
||||
@ -564,7 +564,7 @@ global.upgradeSystemLoader = function() {
|
||||
if (globalExport)
|
||||
load.source += '\nthis["' + globalExport + '"] = ' + globalExport;
|
||||
|
||||
exec();
|
||||
System.__exec(load);
|
||||
|
||||
// check for global changes, creating the globalObject for the module
|
||||
// if many globals, then a module object for those is created
|
||||
@ -851,8 +851,10 @@ global.upgradeSystemLoader = function() {
|
||||
.then(function(normalized) {
|
||||
System.bundles[normalized] = System.bundles[normalized] || System.bundles[b];
|
||||
return System.load(normalized);
|
||||
})
|
||||
.then(function() {
|
||||
return '';
|
||||
});
|
||||
return System.import(b).then(function() { return ''; });
|
||||
}
|
||||
return systemFetch.apply(this, arguments);
|
||||
}
|
||||
@ -871,6 +873,7 @@ global.upgradeSystemLoader = function() {
|
||||
return {
|
||||
deps: [],
|
||||
execute: function() {
|
||||
System.__exec(load);
|
||||
return new Module({});
|
||||
}
|
||||
};
|
||||
|
||||
2
dist/system.min.js
vendored
2
dist/system.min.js
vendored
File diff suppressed because one or more lines are too long
@ -34,8 +34,10 @@
|
||||
.then(function(normalized) {
|
||||
System.bundles[normalized] = System.bundles[normalized] || System.bundles[b];
|
||||
return System.load(normalized);
|
||||
})
|
||||
.then(function() {
|
||||
return '';
|
||||
});
|
||||
return System.import(b).then(function() { return ''; });
|
||||
}
|
||||
return systemFetch.apply(this, arguments);
|
||||
}
|
||||
@ -54,6 +56,7 @@
|
||||
return {
|
||||
deps: [],
|
||||
execute: function() {
|
||||
System.__exec(load);
|
||||
return new Module({});
|
||||
}
|
||||
};
|
||||
|
||||
@ -2,11 +2,13 @@
|
||||
SystemJS Core
|
||||
Adds normalization to the import function, as well as __useDefault support
|
||||
*/
|
||||
(function() {
|
||||
(function(global) {
|
||||
// check we have System
|
||||
if (typeof System == 'undefined')
|
||||
throw 'System not defined. Include the `es6-module-loader.js` polyfill before SystemJS.';
|
||||
|
||||
var curSystem = System;
|
||||
|
||||
/*
|
||||
__useDefault
|
||||
|
||||
@ -54,4 +56,20 @@
|
||||
});
|
||||
}
|
||||
|
||||
})();
|
||||
// define exec for custom instan
|
||||
System.__exec = function(load) {
|
||||
try {
|
||||
Function('global', 'with(global) { ' + load.source + ' \n }'
|
||||
+ (load.address && !load.source.match(/\/\/[@#] ?(sourceURL|sourceMappingURL)=([^\n'"]+)/)
|
||||
? '\n//# sourceURL=' + load.address : '')).call(global, global);
|
||||
}
|
||||
catch(e) {
|
||||
if (e.name == 'SyntaxError')
|
||||
e.message = 'Evaluating ' + load.address + '\n\t' + e.message;
|
||||
throw e;
|
||||
}
|
||||
// traceur overwrites System - write it back
|
||||
if (load.name == '@traceur')
|
||||
global.System = curSystem;
|
||||
}
|
||||
})(typeof window == 'undefined' ? global : window);
|
||||
|
||||
@ -105,7 +105,7 @@
|
||||
detect: function(load) {
|
||||
return !!load.source.match(amdRegEx);
|
||||
},
|
||||
deps: function(load, global, exec) {
|
||||
deps: function(load, global) {
|
||||
|
||||
var deps;
|
||||
var meta = load.metadata;
|
||||
@ -176,7 +176,7 @@
|
||||
delete global.module;
|
||||
delete global.exports;
|
||||
|
||||
exec();
|
||||
System.__exec(load);
|
||||
|
||||
// deps not defined for an AMD module that defines a different name
|
||||
deps = deps || [];
|
||||
|
||||
@ -24,7 +24,7 @@
|
||||
cjsRequireRegEx.lastIndex = 0;
|
||||
return !!(cjsRequireRegEx.exec(load.source) || cjsExportsRegEx.exec(load.source));
|
||||
},
|
||||
deps: function(load, global, exec) {
|
||||
deps: function(load, global) {
|
||||
cjsExportsRegEx.lastIndex = 0;
|
||||
cjsRequireRegEx.lastIndex = 0;
|
||||
|
||||
@ -42,7 +42,7 @@
|
||||
|
||||
return deps;
|
||||
},
|
||||
execute: function(depNames, load, global, exec) {
|
||||
execute: function(depNames, load, global) {
|
||||
var dirname = load.address.split('/');
|
||||
dirname.pop();
|
||||
dirname = dirname.join('/');
|
||||
@ -69,7 +69,7 @@
|
||||
|
||||
load.source = glString + load.source;
|
||||
|
||||
exec();
|
||||
System.__exec(load);
|
||||
|
||||
delete global._g;
|
||||
|
||||
|
||||
@ -27,7 +27,7 @@
|
||||
detect: function() {
|
||||
return true;
|
||||
},
|
||||
deps: function(load, global, exec) {
|
||||
deps: function(load, global) {
|
||||
var match, deps;
|
||||
if (match = load.source.match(globalShimRegEx)) {
|
||||
deps = match[2].match(globalImportRegEx);
|
||||
@ -50,7 +50,7 @@
|
||||
}
|
||||
return deps;
|
||||
},
|
||||
execute: function(depNames, load, global, exec) {
|
||||
execute: function(depNames, load, global) {
|
||||
var globalExport = load.metadata.globalExport;
|
||||
|
||||
// first, we add all the dependency module properties to the global
|
||||
@ -71,7 +71,7 @@
|
||||
if (globalExport)
|
||||
load.source += '\nthis["' + globalExport + '"] = ' + globalExport;
|
||||
|
||||
exec();
|
||||
System.__exec(load);
|
||||
|
||||
// check for global changes, creating the globalObject for the module
|
||||
// if many globals, then a module object for those is created
|
||||
|
||||
@ -25,8 +25,6 @@
|
||||
System.format = {};
|
||||
System.formats = [];
|
||||
|
||||
var curSystem = System;
|
||||
|
||||
if (typeof window != 'undefined') {
|
||||
var curScript = document.getElementsByTagName('script');
|
||||
curScript = curScript[curScript.length - 1];
|
||||
@ -108,23 +106,7 @@
|
||||
throw new TypeError('No format found for ' + (format ? format : load.address));
|
||||
|
||||
// now invoke format instantiation
|
||||
function exec() {
|
||||
try {
|
||||
Function('global', 'with(global) { ' + load.source + ' \n }'
|
||||
+ (load.address && !load.source.match(/\/\/[@#] ?(sourceURL|sourceMappingURL)=([^\n'"]+)/)
|
||||
? '\n//# sourceURL=' + load.address : '')).call(global, global);
|
||||
}
|
||||
catch(e) {
|
||||
if (e.name == 'SyntaxError')
|
||||
e.message = 'Evaluating ' + load.address + '\n\t' + e.message;
|
||||
throw e;
|
||||
}
|
||||
|
||||
// traceur overwrites System - write it back
|
||||
if (load.name == '@traceur')
|
||||
global.System = curSystem;
|
||||
}
|
||||
var deps = curFormat.deps(load, global, exec);
|
||||
var deps = curFormat.deps(load, global);
|
||||
|
||||
// remove duplicates from deps first
|
||||
for (var i = 0; i < deps.length; i++)
|
||||
@ -134,7 +116,7 @@
|
||||
return {
|
||||
deps: deps,
|
||||
execute: function() {
|
||||
var output = curFormat.execute.call(this, Array.prototype.splice.call(arguments, 0), load, global, exec);
|
||||
var output = curFormat.execute.call(this, Array.prototype.splice.call(arguments, 0), load, global);
|
||||
|
||||
if (output instanceof global.Module)
|
||||
return output;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user