Working with @hzoo we identified that there was missing generator support for the import() type.
ERROR in ./index.js
Module build failed: ReferenceError: /Users/req88847/Code/@webpack-examples/with-react/react-dynamic-route-loading-es6/client/index.js: unknown node of type "Import" with constructor "Node"
Code example
let lodash = import('lodash');
lodash.then(module => {
return module.default;
});
Should be fixed with a PR just about to submit.
Working with @hzoo we identified that there was missing generator support for the
import()type.Code example
Should be fixed with a PR just about to submit.