Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 630 Bytes

rollup.md

File metadata and controls

21 lines (14 loc) · 630 Bytes

Rollup

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.

tree-shaking

Not including code which is not being used in the final bundle

  • works only with ES6 modules, not CommonJS
  • webpack2 will also have it

scope-hoisting

Rollup hoists everything into a single function scope (creating variables and namespacing them as necessary).


sources: