You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ES6 loader will not support circular dependencies in anything but ES6 modules. The proposed way to handle this is with a separate registry (cache) for ES5 modules (AMD, node), bypassing the ES6 instantiate hook's dependency fetching feature.
There's a silver lining here! Keeping our own registry allows us to avoid having to transform ES5 modules to ES6 and back again when they are passed through the ES6 loader! This improves performance and removes ugly hacks!! Woohoo!
According to this js-loaders issue, we need to manage our own ES5 modules with a separate module registry.
The text was updated successfully, but these errors were encountered: