browserify-incremental
browserify-incremental copied to clipboard
Cache isn't invalidated when file is removed
trafficstars
Splitting this issue report out from https://github.com/jsdf/browserify-incremental/issues/14#issuecomment-108539891.
$ npm install browserify browserify-incremental
$ echo "require('./b.js')" > a.js
$ echo "console.log('hi')" > b.js
$ ./node_modules/.bin/browserifyinc a.js -o app.js
$ rm b.js
$ ./node_modules/.bin/browserifyinc a.js -o app.js
$ node app.js
hi
@jsdf is this an issue still?