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
This is probably technically in Rollup's court, but if there's anything we can do here to make the bundler behave better, that would be nice to do.
If you import any of the helpers in shared.js and bundle with Rollup with default settings, the transitionManager comes along too. I assume this has to do with it being an object instead of a function, and Rollup can't tell that it has no side effects.
FWIW, UglifyJS is able to discern that this is unneeded code and remove it, but Butternut is not. So maybe this is even in Butternut's court.
The text was updated successfully, but these errors were encountered:
This is probably technically in Rollup's court, but if there's anything we can do here to make the bundler behave better, that would be nice to do.
If you import any of the helpers in
shared.js
and bundle with Rollup with default settings, thetransitionManager
comes along too. I assume this has to do with it being an object instead of a function, and Rollup can't tell that it has no side effects.FWIW, UglifyJS is able to discern that this is unneeded code and remove it, but Butternut is not. So maybe this is even in Butternut's court.
The text was updated successfully, but these errors were encountered: