Skip to content

Commit 949272a

Browse files
author
joeldenning
committed
6.12.1
1 parent 8abe4c6 commit 949272a

12 files changed

+26
-14
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
SystemJS 6.12.0
1+
SystemJS 6.12.1
22
* Call fetch hook when retrieving external import maps. Resolves #2374. (https://github.com/systemjs/systemjs/pull/2376)
33

4+
SystemJS 6.12.0
5+
* This version was published in error. Please use 6.12.1 instead.
6+
47
SystemJS 6.11.0
58
* Add the possibility to use an async createScript hook (https://github.com/systemjs/systemjs/pull/2362 @legarsjules)
69
* Use Promise.resolve in named-register. Resolves #2359. (https://github.com/systemjs/systemjs/pull/2363)

dist/extras/module-types.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,9 @@ function resolveUrl (relUrl, parentUrl) {
126126
systemJSPrototype.fetch = function (url, options) {
127127
return fetch(url, options)
128128
.then(function (res) {
129+
if (options.passThrough)
130+
return res;
131+
129132
if (!res.ok)
130133
return res;
131134
var contentType = res.headers.get('content-type');

dist/extras/module-types.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.

0 commit comments

Comments
 (0)