An ES6 module bundler, more performant than Browserify and Webpack.
Rollup statically analyses your code, and your dependencies, and includes the bare minimum in your bundle.
Not including code which is not being used in the final bundle
- works only with ES6 modules, not CommonJS
- webpack2 will also have it
Rollup hoists everything into a single function scope (creating variables and namespacing them as necessary).
sources: