I have code roughly like this:
// widgets.js
export {default as Box} from "./box"
// lib.js
import * as Widgets form "./widgets"
export {Widgets}
That fails with
TypeError: Cannot read property 'suggestedNames' of undefined
at Module.getCanonicalName (.gobble-build/01-rollup/1/rollup.js:1234:28)
at .gobble-build/01-rollup/1/rollup.js:2055:76
I haven’t been able to create a minified testcase yet.
I have code roughly like this:
That fails with
I haven’t been able to create a minified testcase yet.