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
i wonder if it would be possible somehow to redefine dynamic imports in a way "similar" to calls like
//requirejs
var x = require('mymodule').someFunction()
how does this translate to dynamic import, as ES6 dynamic imports are Promises, i found some issues with those parts while doing the conversion, and had to keep them as AMD
//es6 dynamic modules
import('mymodule').then(......).catch(...); //it's async! so it's not "compatible"
The text was updated successfully, but these errors were encountered:
i wonder if it would be possible somehow to redefine dynamic imports in a way "similar" to calls like
how does this translate to dynamic import, as ES6 dynamic imports are Promises, i found some issues with those parts while doing the conversion, and had to keep them as AMD
The text was updated successfully, but these errors were encountered: