README
browserify-cache-fly 📝✈️
A plugin to Browserify to Ignore the files when they have not been modified.
How to Install
npm install --save-dev browserify-cache-fly
How to Use
const cacheFly = require('browserify-cache-fly')
const bundler = browserify({
transform: cacheFly(null, babelify)
})
bundler.add('./app.js')
// ...