mirror of https://github.com/lukechilds/rollup.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Rich Harris
2f62e7f3ca
|
9 years ago | |
---|---|---|
bin | 9 years ago | |
browser | 10 years ago | |
src | 9 years ago | |
test | 9 years ago | |
.babelrc | 10 years ago | |
.eslintrc | 10 years ago | |
.gitignore | 10 years ago | |
.travis.yml | 10 years ago | |
CHANGELOG.md | 9 years ago | |
README.md | 9 years ago | |
gobblefile.js | 10 years ago | |
package.json | 9 years ago |
README.md
rollup
I roll up, I roll up, I roll up, Shawty I roll up
I roll up, I roll up, I roll up –Wiz Khalifa
Quickstart
Rollup can be used via a JavaScript API or a Command Line Interface. Install with npm install -g rollup
and run rollup --help
to get started.
A next-generation ES6 module bundler
When you're developing software, it's much easier to break your library or application apart into separate pieces that you can work on separately. It's also very likely that you'll have dependencies on third party libraries. The result is lots of small files – but that's bad news for browsers, which get slowed down by having to make many requests.
The solution is to bundle your code into a single file that includes everything you need.
TKTKTKTK browserify, webpack, yada yada
License
Released under the MIT license.