watchify
watchify copied to clipboard
watch mode for browserify builds
Using `grunt-browserify` with watch mode, [email protected] does not reload on file change. If I `cd` into `node_modules/grunt-browserify` and `npm install [email protected]` it reloads properly. The code is private, but if...
I have trouble with chokidar watch, it doesn't catch every file change (Win 10). I tried poll option, even useFsEvents and nothing works. fs.watch works well so will be nice...
Is watchify not just a wrapper of browserify? The two listed browserifyFunction don't handle the source the same. For example the "watchified"-function finds my imports and the non "watchified" not....
Some of our browserify bundles take over 45 seconds to build. While watchify is great for development, building all of our bundles is a significant amount of time on our...
Hi, is there a way to watch input files with the folloing notation only : ``` *.client.ts ? ```
When watchify fires the 'update' event, calling b.bundle() produces errors that would not happen if b.paths option was being taken into account - indeed, the bundle compiles the first time...
Using a single [chokidar](https://github.com/paulmillr/chokidar) instance would require changing how watchify "determines" what files to watch. [Currently](https://github.com/substack/watchify/blob/fe724a4665e80eb1bbca5564c88f68526e3dac77/index.js#L93-L107), every file that's part of a build gets its own chokidar instance. This makes...
Add/remove is done by calling the constructor, which retains the caches so builds remain fast. I took this approach, since from my reading of the code, `reset()` needs to be...
Is there a configuration needed to get watchify to recognize new files?