Skip to content

Releases: systemjs/systemjs

6.1.0

11 Sep 23:34
Compare
Choose a tag to compare

Features

  • Adding support for <script type="systemjs-module" src="import:foo"> (See docs). (#2015)

6.0.0

29 Aug 19:57
Compare
Choose a tag to compare

Breaking Changes

  • Import map scopes now require a trailing / (#2009)
  • JSON and Wasm modules are no longer supported by default in s.js and system.js. Instead, use the new module-types extra
  • Deps argument added to onload hook (#1998)
  • System.resolve is now synchronous by default in both s.js and system.js (#1996 and #1939, @joeldenning)

Features

  • CSS modules can now be loaded by s.js and system.js. Docs (#1997)
  • Cascading/Composing import maps are now supported. Docs (#2009)
  • New module types extra for CSS, JSON and Wasm (#2006)
  • The first named System.regiser in a bundle will now define the bundle module itself. This avoids need for double System.import() (#1984, @joeldenning)

Patches

5.0.0

31 Jul 03:33
Compare
Choose a tag to compare

Breaking Changes

  • Import map scopes now resolve relative to the base, not the scope (#1975)

4.1.1

31 Jul 03:27
Compare
Choose a tag to compare

Patches

  • Fix bug in named exports extra with AMD exports (#1978)
  • Ensure that global frames are not detected in global extra (#1973, @kduret)

4.1.0

14 Jul 20:37
Compare
Choose a tag to compare

Features

  • Added a new "Use Default" extra. (#1969)

Patches

SystemJS 0.21.5

23 Sep 21:54
Compare
Choose a tag to compare
  • Fixes an IE11 compatibility bug (#1845)

SystemJS 0.21.4

31 May 15:35
Compare
Choose a tag to compare

Upgrades to ES Module Loader 2.3.0:

  • Support for top-level await variant B through a promise return from System.register execute
  • Support for real ES module returns in instantiate through Symbol.toStringTag detection (allowing bridging between native loader)

SystemJS 0.21.3

16 Apr 15:23
Compare
Choose a tag to compare

Fixes a Rollup build bug resulting in rewriting of indirect eval.

SystemJS 0.21.2

04 Apr 15:43
Compare
Choose a tag to compare

Production Loader

  • Fixes global detection when loading in parallel (#1810)

Dev Loader

  • Fixes indirect eval build bug (#1809)
  • Disables invalid depCache preloading when running in Node (#1806)

SystemJS 0.21.1

30 Mar 15:52
Compare
Choose a tag to compare

Updates SystemJS production loader to support System.config({ wasm: true }) with WebAssembly.compileStreaming.