Skip to content

Commit

Permalink
6.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Oct 9, 2020
1 parent e288dc0 commit de36f16
Show file tree
Hide file tree
Showing 24 changed files with 4,357 additions and 4,393 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
SystemJS 6.7.0
* Implement integrity attribute for systemjs-importmap scripts (https://github.com/systemjs/systemjs/commit/78072e594ebebab9124aa9fedd7e17d8303835e1)
* Deprecate the transform and use default extras (https://github.com/systemjs/systemjs/commit/5f7571a76bef210d096e672c9f011d94871a6827)
* Fetch hooks brought into core, module types extra refactoring (https://github.com/systemjs/systemjs/commit/281fdf0653663c58145f880131dceaf479add553)
* Inline named exports extra behaviours into core and deprecate (https://github.com/systemjs/systemjs/commit/3eefa2daa8d203e8d886bae7dc587eed148c5808)

SystemJS 6.6.1
* IE11 support bug fix (https://github.com/systemjs/systemjs/pull/2247)

Expand Down
4 changes: 2 additions & 2 deletions dist/extras/amd.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
var amdResult = amdExec.apply(exports, depModules);
if (amdResult !== undefined)
module.exports = amdResult;
if (exports !== module.exports)
_export('default', module.exports);
_export(module.exports);
_export('default', module.exports);
}
};
}];
Expand Down
2 changes: 1 addition & 1 deletion dist/extras/amd.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/extras/amd.min.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/extras/global.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
return [[], function (_export) {
return {
execute: function () {
_export(globalExport);
_export({ default: globalExport, __useDefault: true });
}
};
Expand Down
2 changes: 1 addition & 1 deletion dist/extras/global.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/extras/global.min.js.map

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

0 comments on commit de36f16

Please sign in to comment.