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
My app has multiple entry points (that are built into separate independent bundles) that share the common library.
If one of the entry points uses some exports from that library all the bundles will get such export persisted even if it's not used by them.
Example:
the library defines 3 exports A, B, C
entry1 uses all 3 of them, all 3 are not shaken in the bundle1
entry2 only uses C, but still all 3 are present in the bundle2
My app has multiple entry points (that are built into separate independent bundles) that share the common library.
If one of the entry points uses some exports from that library all the bundles will get such export persisted even if it's not used by them.
Example:
Demo repo: https://github.com/emirotin/common-shake-issue
The text was updated successfully, but these errors were encountered: