jsdf / browserify-incremental

incremental rebuild for browserify
175 stars 13 forks source link

Update README to describe vs watchify/browserify #10

Closed jprichardson closed 9 years ago

jprichardson commented 9 years ago

How is this different than watchify / browserify combo? Maybe updating the README to explain the differences?

justjake commented 9 years ago

Watchify does not persist the cache across watchify restarts. browserify-incremental caches the compilation of each file (module) in your browserify bundle in a JSON blob, and restores this cache into memory the next time you start it. This (should) give you faster builds in build scripts, etc where you just want to compile/bundle once.

stevenpetryk commented 9 years ago

The README seems to contain this, recommending you close this @jsdf.