Skip to content
This repository was archived by the owner on Jul 11, 2019. It is now read-only.

Prefer named exports #79

Closed
wants to merge 1 commit into from
Closed

Prefer named exports #79

wants to merge 1 commit into from

Conversation

TrySound
Copy link
Contributor

This should fix interop propblem which cjs imports esm.

This should fix interop propblem which cjs imports esm.
@oliviertassinari
Copy link
Owner

Is adding package.module support worth changing the import?

@TrySound
Copy link
Contributor Author

Yes. If we still want to achieve treeshakability then everything should be in esm. default exports suck. We should get rid of them.

@TrySound
Copy link
Contributor Author

I didn't write default exports for half year and to be honest I have now a bunch of problems less in my development process.

@oliviertassinari
Copy link
Owner

oliviertassinari commented May 23, 2018

@TrySound There is almost nothing to tree shake in this component. I disagree. I would rather have the issue fixed on the tooling side.

@TrySound
Copy link
Contributor Author

@oliviertassinari I meant material-ui treeshakability. This package should be treeshakable to not be a dead code in user bundler.

@TrySound
Copy link
Contributor Author

Also with cjs bundle produces bigger bundle.

@oliviertassinari
Copy link
Owner

oliviertassinari commented May 24, 2018

Sorry, I don't want to sacrifice usability. This diff looks wrong to me:

-import EventListener from 'react-event-listener';
+import { EventListener } from 'react-event-listener';

@TrySound
Copy link
Contributor Author

This look wrong to me. It just doesn't work in our case.

import EventListener, { withOptions } from 'react-event-listener';

default exports was added as an interop with cjs. And it doesn't work with cjs as we can see. Named export doesn't make this library unusable. It's just more unified convention. You don't even ask the user to choose the name.

@oliviertassinari
Copy link
Owner

The relevant issue on webpack side: webpack/webpack#6584.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants