browserify-incremental icon indicating copy to clipboard operation
browserify-incremental copied to clipboard

incremental rebuild for browserify

Results 18 browserify-incremental issues
Sort by recently updated
recently updated
newest added
trafficstars

Bumps [eslint](https://github.com/eslint/eslint) from 2.4.0 to 6.6.0. Release notes *Sourced from [eslint's releases](https://github.com/eslint/eslint/releases).* > ## v6.6.0 > * [`39dfe08`](https://github.com/eslint/eslint/commit/39dfe0880fa934e287e8ea1f7b56d5cba8d43765) Update: false positives in function-call-argument-newline (fixes [#12123](https://github-redirect.dependabot.com/eslint/eslint/issues/12123)) ([#12280](https://github-redirect.dependabot.com/eslint/eslint/issues/12280)) (Scott O'Hara) > *...

dependencies

I've create a PR to [grunt-browserify](https://github.com/jmreidy/grunt-browserify/pull/396) to add support for browserify-incremental to that plugin. :)

I'm using the envify transform and uglify to remove dead code. ``` .transform('envify', { global: true, NODE_ENV: process.argv.indexOf('--production') !== -1 ? 'production' : 'development' }) ``` When the `NODE_ENV` property...

The thing is that I use typescript sources that get compiled into new js files with new modified times even though the sources themselves do not change, which means that...

Vanilla browserify allows you to do `b.bundle(cb)` and get the bundle passed into `cb`, but with `browserify-incremental` the callback will only be called if `.pipe(someStream)` is included. This code works:...

Today I had the joy of experimencing this "impossible" error: https://www.youtube.com/watch?v=9UObTLLYhmo Deleting my build cache file (`buildCache.json`) solved the problem. I have now disabled browserify-incremental, and I haven't had the...

Hey, If I modify the contents of the main bundle entry re-using the same bundler instance, output is not updated accordingly. It seems that the cache is not properly invalidated....

Just by adding a single `.` to the front of the filename, we gain - a cleaner project directory - ability to do simple code search with `grep 'code' *...

I just installed `[email protected]` using `npm install browserify-incremental` and running it throws an error about a missing `usage.txt` file: ``` $./node_modules/browserify-incremental/bin/cmd.js events.js:85 throw er; // Unhandled 'error' event ^ Error:...

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