-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
If an entry point has a default export, like export default 1, this plugin's export * from 'entry' strategy won't include that.
Apparently * doesn't include the export named default. You can use the rollup REPL to play around with this.
Possible solutions:
- Include an
export { default } from './b.js'line in the generated output, iff the input has a default export. - Finally get around to implementing Consider copying the file content instead of exporting it #7, in which case we will work correctly regardless.
Metadata
Metadata
Assignees
Labels
No labels