This repository was archived by the owner on Jul 13, 2020. It is now read-only.
ES Module Loader 2.1.4
- Reverts the change from the previous 2.1.0 release where __esModule modules were fully lifted, due to bugs in edge cases, specifically that since
__esModule
is required on the lifted module, this becomes an invalid iterable property of the module, thus making it unsuitable to be used in place of the original (systemjs/systemjs#1629, d0f1eb2). - Fix to match spec behaviours on circular binding updates. This is done by only calling setters when there is a different value being propagated, instead of having a per-module lock (dfa6bed).