This repository has been archived by the owner on Jul 13, 2020. It is now read-only.
Releases: ModuleLoader/es-module-loader
Releases · ModuleLoader/es-module-loader
ES6 Module Loader v0.17.7
ES6 Module Loader v0.17.6
ES6 Module Loader v0.17.5
Fixes a linking bug (c518b8c)
ES6 Module Loader v0.17.4
Features
- Improved stack traces for failed loads - will always provide exact parent for any failure (thanks to @nyarly, #397).
- Source maps can be disabled for transpilers via transpiler options (#418)
- Better XHR error reporting (thanks to @msegado, 8b4dd47)
module.toString
is nowModule
per ES6 spec (23e92dc)
Bug Fixes
ES6 Module Loader v0.17.3
Correction to URL detection. Will now always use global.URLPolyfill
when present, and this is included in the default builds.
ES6 Module Loader v0.17.2
ES6 Module Loader v0.17.1
ES6 Module Loader 0.17.0
Breaking Changes
- Module names are now normalized as URLs in the default System implementation, with locate simply the identity operation.
.js extensions are also no longer added by default.
These changes are part of the transition into the new specification work. See the discussion at whatwg/loader#52 for further information.
.js extension adding can easily be added back if needed with a custom hook. - __moduleAddress is no longer provided, just __moduleName now that this is a URL
- Loader builds no longer include the promises polyfill, but do include the URL polyfill.
- baseURL is no longer implemented. It can be replaced by wildcard paths -
System.paths['*'] = '/path/*'
Features
- TypeScript support (466616a)
- New minimal loader build reducing the footprint from 9KB to a 6KB dev and 5KB production build (3df5de2)
- Build with transpiler now renamed to es6-module-loader-dev, and loader without the transpiler es6-module-loader
- System.import now allows direct parentName as second argument (1889e51)
Bugs
- Strip BOM in Node (b61a407)
ES6 Module Loader 0.16.6
ES6 Module Loader 0.16.5
Bugfixes
- Fix ES6 debugging via source map with Traceur (20ced0c)