grunt-contrib-watch icon indicating copy to clipboard operation
grunt-contrib-watch copied to clipboard

Run tasks whenever watched files change.

Results 103 grunt-contrib-watch issues
Sort by recently updated
recently updated
newest added

The interrupt feature and unit tests were failing on Windows with Node v0.10.35 and Grunt v0.4.5. It looks like the exit code on interrupt is null, which is causing the...

A [similar issue](https://github.com/stefanpenner/ember-cli/issues/2226#issuecomment-65480717) cropped up over at ember-cli, and reminded me of an issue with grunt-contrib-watch and too many open files. Lots of people are saying this solved the for...

Once all of the setup tasks required to react to changes on the file system are complete, emit an event. Use case: When watching a large number of files it...

Hi, Grunt Watch consumes about 65-70% CPU Resources. my devDependencies are as follows. ``` json "devDependencies": { "grunt": "^0.4.5", "grunt-contrib-uglify": "^0.9.1", "grunt-contrib-watch": "^0.6.1", "grunt-sass": "^0.18.1", "load-grunt-tasks": "^3.1.0", "node-bourbon": "^4.2.1-beta1" }...

I use grunt watch with the following modules to minify the code in my website: - grunt-contrib-uglify - grunt-contrib-compass - grunt-contrib-htmlmin Everytime I launch `grunt watch` and modify some file,...

Just thought I'd drop this here since it took me FOREVER to figure this out. If you're getting these errors: ``` warning: possible EventEmitter memory leak detected. 11 listeners added....

If I understand correctly, `grunt-contrib-watch` should detect any added, modified, or deleted file that matches the patters specified in the Grunt configuration file. On the other hand, I noticed that...

Trying to set up different watch configurations for dev vs prod What am I missing? ``` Verifying property watch.dev.files exists in config...ERROR >> Unable to process task. Warning: Required config...

When configuring grunt-contrib-watch to watch a particular file, unrelated watches will trigger a "file deleted" event if the casing on the file name is incorrect. E.g. Watch on file "File.txt"...