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 ```