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

Releases: ModuleLoader/es-module-loader

ES6 Module Loader 0.16.4

08 Apr 13:06
Compare
Choose a tag to compare

Bugfixes

  • Track transpiler first run on class instance (680e90a)
  • Fix linking error messages (8c6a1db)
  • Test and update against Babel 5 (a29fc62)

ES6 Module Loader 0.16.3

04 Apr 15:43
Compare
Choose a tag to compare
  • Fixes loading of Traceur and Babel in windows (cd875cd)

ES6 Module Loader 0.16.2

04 Apr 15:08
Compare
Choose a tag to compare
  • Fix bug where Babel might not be found in Node (5388de3)

ES6 Module Loader 0.16.1

26 Mar 15:42
Compare
Choose a tag to compare

Properly support map config for transpiler modules (4028693)

ES6 Module Loader 0.16.0

24 Mar 18:26
Compare
Choose a tag to compare

Upgrade Notes

  • For use in NodeJS, it is important to manually install Traceur or Babel so that it can be found when required.
  • For use in the browser, the transpilers will by default now be looked for in the baseURL path, and not the same folder as the module loader. The data-traceur-src and data-babel-src script attributes are no longer supported. Instead use paths - System.paths['traceur'] = 'path/to/traceur.js'.
  • Transpilers are stored under the module names traceur and babel. If there is really a problem with these names clashing with existing names, change System.transpiler = 'custom-babel' to a new module name, which will be loaded instead, but this is not recommended.

See also https://github.com/ModuleLoader/es6-module-loader/wiki/Configuring-the-Loader#finding-the-transpiler.

ES6 Module Loader 0.15.0

03 Mar 18:04
Compare
Choose a tag to compare
  • Update Traceur to 0.0.86.
  • Support metadata.sourceMap for input source maps in Traceur (#314)
  • Ensure System.delete re-executes sources when loaded again (#313)

ES6 Module Loader 0.14.0

18 Feb 11:04
Compare
Choose a tag to compare
  • Rename 6to5 to Babel (e616a94)
  • Disable JSX support by default in Babel (48acf7e)
  • System.define bug fix (67f45bf)

ES6 Module Loader 0.13.1

12 Feb 14:23
Compare
Choose a tag to compare
  • Fix to allow multiple versions of Traceur in Node (db1171a)
  • Bump 6to5 to 3.5 version (606f8e5)

ES6 Module Loader 0.13.0

01 Feb 15:01
Compare
Choose a tag to compare
  • Use 6to5-core as a dependency instead of 6to5 for faster install (83a9d3f)
  • Rename System.parser to System.transpiler (83a9d3f)
  • Convert System.parse API into simpler System.transpile API (83a9d3f)

ES6 Module Loader 0.12.0

28 Jan 21:42
Compare
Choose a tag to compare

Features