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

Commit 7d1a9c9

Browse files
committed
Merge pull request #111 from guybedford/master
separate Traceur out of repo
2 parents 6d1ac6f + 7fc336f commit 7d1a9c9

File tree

7 files changed

+11
-20824
lines changed

7 files changed

+11
-20824
lines changed

Gruntfile.js

-10
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,6 @@ module.exports = function (grunt) {
5454
src: 'tmp/<%= pkg.name %>.js',
5555
dest: 'dist/<%= pkg.name %>.js'
5656
},
57-
traceur: {
58-
options: {
59-
banner: '/*\n * Traceur Compiler 0.0.25 - https://github.com/google/traceur-compiler \n */\n',
60-
compress: {
61-
drop_console: false
62-
}
63-
},
64-
src: 'lib/traceur.js',
65-
dest: 'dist/traceur.js'
66-
},
6757
polyfillOnly: {
6858
src: 'tmp/<%= pkg.name %>-sans-promises.js',
6959
dest: 'dist/<%= pkg.name %>-sans-promises.js'

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ See the [demo folder](https://github.com/ModuleLoader/es6-module-loader/blob/mas
1515

1616
For an example of a universal module loader based on this polyfill for loading AMD, CommonJS and globals, see [SystemJS](https://github.com/systemjs/systemjs).
1717

18+
_Current version tested against **[Traceur 0.0.30](https://github.com/google/traceur-compiler/tree/traceur%400.0.30)**._
19+
1820
_Note that while the specification draft has been written, it is still subject to change._
1921

2022
## Background
@@ -27,9 +29,9 @@ This polyfill implements the `Loader` and `Module` globals, exactly as specified
2729

2830
## Getting Started
2931

30-
Download both [es6-module-loader.js](https://raw.github.com/ModuleLoader/es6-module-loader/master/dist/es6-module-loader.js) and [traceur.js](https://raw.github.com/ModuleLoader/es6-module-loader/master/lib/traceur.js) into the same folder.
32+
Download both [es6-module-loader.js](https://raw.githubusercontent.com/ModuleLoader/es6-module-loader/v0.5.1/dist/es6-module-loader.js) and [traceur.js](https://raw.githubusercontent.com/google/traceur-compiler/[email protected]/bin/traceur.js) into the same folder.
3133

32-
If using ES6 syntax (optional), include Traceur in the page first:
34+
If using ES6 syntax (optional), include traceur.js in the page first:
3335

3436
```html
3537
<script src="traceur.js"></script>

bower.json

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
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.js",
7+
"dependencies": {
8+
"traceur": "0.0.30"
9+
},
710
"keywords": [
811
"es6",
912
"harmony",

dist/traceur-runtime.js

-1
This file was deleted.

dist/traceur.js

-17
This file was deleted.

0 commit comments

Comments
 (0)