Skip to content

Commit

Permalink
6.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldenning committed Jan 10, 2020
1 parent 052c874 commit 339cd3c
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
SystemJS 6.1.8
* Ensure that __esModule is copied to ns even if it isn't enumerable. Improves webpack interop when using libraryTarget system.

SystemJS 6.1.7
* Fix problem where banner comment in output files had wrong version number

Expand Down
6 changes: 5 additions & 1 deletion dist/s.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* SJS 6.1.7
* SJS 6.1.8
* Minimal SystemJS Build
*/
(function () {
Expand Down Expand Up @@ -214,6 +214,10 @@
changed = true;
}
}

if (name.__esModule) {
ns.__esModule = name.__esModule;
}
}
if (changed)
for (let i = 0; i < importerSetters.length; i++)
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.

0 comments on commit 339cd3c

Please sign in to comment.