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

Commit c32a324

Browse files
committed
0.9.1
1 parent 6b86fbd commit c32a324

8 files changed

+5
-29
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ _Note the ES6 module specification is still in draft, and subject to change._
2323

2424
### Basic Use
2525

26-
Download both [es6-module-loader.js](https://raw.githubusercontent.com/ModuleLoader/es6-module-loader/v0.9.0/dist/es6-module-loader.js) and traceur.js into the same folder.
26+
Download both [es6-module-loader.js](https://raw.githubusercontent.com/ModuleLoader/es6-module-loader/v0.9.1/dist/es6-module-loader.js) and traceur.js into the same folder.
2727

2828
If using ES6 syntax (optional), include [`traceur.js`](https://raw.githubusercontent.com/jmcriffey/bower-traceur/0.0.66/traceur.js) in the page first then include `es6-module-loader.js`:
2929

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "es6-module-loader",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "An ES6 Module Loader polyfill based on the latest spec.",
55
"homepage": "https://github.com/ModuleLoader/es6-module-loader",
66
"main": "dist/es6-module-loader-sans-promises.js",

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

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2294,14 +2294,6 @@ function logloads(loads) {
22942294
* Traceur-specific Parsing Code for Loader
22952295
*/
22962296
(function() {
2297-
function checkForErrors(output, load) {
2298-
if (output.errors.length) {
2299-
for (var i = 0, l = output.errors.length; i < l; i++)
2300-
console.error(output.errors[i]);
2301-
throw new Error('Parse of ' + load.name + ', ' + load.address + ' failed, ' + output.errors.length);
2302-
}
2303-
}
2304-
23052297
// parse function is used to parse a load record
23062298
// Returns an array of ModuleSpecifiers
23072299
var traceur;

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

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/es6-module-loader.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2258,14 +2258,6 @@ function logloads(loads) {
22582258
* Traceur-specific Parsing Code for Loader
22592259
*/
22602260
(function() {
2261-
function checkForErrors(output, load) {
2262-
if (output.errors.length) {
2263-
for (var i = 0, l = output.errors.length; i < l; i++)
2264-
console.error(output.errors[i]);
2265-
throw new Error('Parse of ' + load.name + ', ' + load.address + ' failed, ' + output.errors.length);
2266-
}
2267-
}
2268-
22692261
// parse function is used to parse a load record
22702262
// Returns an array of ModuleSpecifiers
22712263
var traceur;

dist/es6-module-loader.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
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.9.0",
4+
"version": "0.9.1",
55
"homepage": "https://github.com/ModuleLoader/es6-module-loader",
66
"author": {
77
"name": "Guy Bedford, Luke Hoban, Addy Osmani",

src/loader.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1019,14 +1019,6 @@ function logloads(loads) {
10191019
* Traceur-specific Parsing Code for Loader
10201020
*/
10211021
(function() {
1022-
function checkForErrors(output, load) {
1023-
if (output.errors.length) {
1024-
for (var i = 0, l = output.errors.length; i < l; i++)
1025-
console.error(output.errors[i]);
1026-
throw new Error('Parse of ' + load.name + ', ' + load.address + ' failed, ' + output.errors.length);
1027-
}
1028-
}
1029-
10301022
// parse function is used to parse a load record
10311023
// Returns an array of ModuleSpecifiers
10321024
var traceur;

0 commit comments

Comments
 (0)