jsdf / browserify-incremental

incremental rebuild for browserify
175 stars 13 forks source link

Cache isn't invalidated when file is removed #36

Open Macil opened 8 years ago

Macil commented 8 years ago

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
dcousens commented 7 years ago

@jsdf is this an issue still?