Skip to content
This repository was archived by the owner on Jul 13, 2020. It is now read-only.

Commit 24f6e5e

Browse files
committed
0.16.5
1 parent 20ced0c commit 24f6e5e

7 files changed

+9
-13
lines changed

dist/es6-module-loader-sans-promises.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/es6-module-loader-sans-promises.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/es6-module-loader-sans-promises.src.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -1185,9 +1185,7 @@ function logloads(loads) {
11851185

11861186
// add "!eval" to end of Traceur sourceURL
11871187
// I believe this does something?
1188-
source += '!eval';
1189-
1190-
return source;
1188+
return source + '\n//# sourceURL=' + load.address + '!eval';
11911189
}
11921190
function doTraceurCompile(source, compiler, filename) {
11931191
try {

dist/es6-module-loader.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/es6-module-loader.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/es6-module-loader.src.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -2455,9 +2455,7 @@ function logloads(loads) {
24552455

24562456
// add "!eval" to end of Traceur sourceURL
24572457
// I believe this does something?
2458-
source += '!eval';
2459-
2460-
return source;
2458+
return source + '\n//# sourceURL=' + load.address + '!eval';
24612459
}
24622460
function doTraceurCompile(source, compiler, filename) {
24632461
try {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "es6-module-loader",
33
"description": "An ES6 Module Loader shim",
4-
"version": "0.16.4",
4+
"version": "0.16.5",
55
"homepage": "https://github.com/ModuleLoader/es6-module-loader",
66
"author": {
77
"name": "Guy Bedford, Luke Hoban, Addy Osmani",

0 commit comments

Comments
 (0)