watchify icon indicating copy to clipboard operation
watchify copied to clipboard

watch mode for browserify builds

Results 39 watchify issues
Sort by recently updated
recently updated
newest added

If `browserify` is given the `watchify` plugin, it will silently freeze if there's an import of a non-existent module anywhere in the source files reachable via `entries`. I've isolated a...

e.g. `watchify a.js b.js -o bundle.js` will ignore file `a.js`.

Please add a -h / --help command line flag for the program so that users can see all of the available options (without having to pull up a browser and...

enhancement
help wanted

Hello! It's realy weird but, the update event is called every time I've saved my file 3 times. I'm using gulp and here is my config: ```JS var gulp =...

Watchify currently ignores options pull = false. With this fix Watchify is forwarding this option as usePolling = false to chokidar. Without this option chokidar is using too much CPU...

Hi, For severals files in my project, watchify is not working... I tried and searched a lot but I didn't find a clue how to resolve this. Everything is up...

Another way to fix #56 Unlike #146 , this implementation does not call the constructor function each time entries added or removed, but try to only manipulate the pipeline. The...

I have dozens of bundles built by browserify, I want to watch changes and update bundles. while I didn't find how to run the command `watchify -o ` to do...

When switching between dev and production builds I end up having to edit a file to force browserify to update my build. If we had an option to make browserify...

In Chokidar 1.7.0 a new option [has been added](https://github.com/paulmillr/chokidar/pull/598) to bypass [a long lasting issue](https://github.com/paulmillr/chokidar/issues/300) about directories with name including glob characters, like parenthesis. This PR adds a new `disableGlobbing`...