Skip to content

Commit

Permalink
6.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Aug 6, 2020
1 parent 1bcf604 commit 54db278
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
SystemJS 6.4.3
* Define an "s.js" entry in "exports" (https://github.com/systemjs/systemjs/pull/2226)
* Fixup use of const for older browsers (https://github.com/systemjs/systemjs/issues/2227)

SystemJS 6.4.2
* Fix and simplify auto import domready resets (https://github.com/systemjs/systemjs/pull/2225)

Expand Down
4 changes: 2 additions & 2 deletions dist/s.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* SJS 6.4.2
* SJS 6.4.3
* Minimal SystemJS Build
*/
(function () {
Expand Down Expand Up @@ -613,7 +613,7 @@
window.addEventListener('DOMContentLoaded', processScripts);
}

const systemInstantiate = systemJSPrototype.instantiate;
var systemInstantiate = systemJSPrototype.instantiate;
systemJSPrototype.instantiate = function (url, firstParentUrl) {
var preloads = this[IMPORT_MAP].depcache[url];
if (preloads) {
Expand Down
2 changes: 1 addition & 1 deletion dist/s.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/s.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/system.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* SystemJS 6.4.2
* SystemJS 6.4.3
*/
(function () {
function errMsg(errCode, msg) {
Expand Down Expand Up @@ -621,7 +621,7 @@
window.addEventListener('DOMContentLoaded', processScripts);
}

const systemInstantiate = systemJSPrototype.instantiate;
var systemInstantiate = systemJSPrototype.instantiate;
systemJSPrototype.instantiate = function (url, firstParentUrl) {
var preloads = this[IMPORT_MAP].depcache[url];
if (preloads) {
Expand Down

0 comments on commit 54db278

Please sign in to comment.