Hacker News new | ask | show | jobs
by bastawhiz 832 days ago
One of the interesting things about rollup is how it compiles code. Instead of building each module as a closure, separating the scopes, it compiles everything as one big closure. This is actually faster to parse and run, and allows you to do much better tree shaking and other optimizations.

If you're doing all that, you could probably support rollup plugins as well, which it sounds like they want to do.