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

Live reload appears to be broken to me. Other people seem to report it 'working' for them, but I've not actually managed to have anyone in this working state demonstrate...

Whenever I change a file, grunt detects the change and runs the correct tasks but the browser doesn't reload. I am running the plugin and the following appears: ![image](https://cloud.githubusercontent.com/assets/5462907/6527189/b167a3ec-c410-11e4-8448-feb927be1222.png) Livereload...

I am considering increasing the options.interval to 2000 ms. This means, if I understand correctly, that the watch worker will check the files for changes every 2 seconds. I assume...

Hi! I can change css using php, but it required to reload the page. is there any way to take effect without reload the page.

This is in my Gruntfile.js: ``` javascript watch: { dev: { files: [ 'Gruntfile.js' ], tasks: [ 'jshint' ] } } ``` Yet when I run `grunt watch:dev -v`, it...

Allow to option to pass an array of tasks to run for `option.atBegin`. This way, certain tasks can be skipped when starting the watch task. Example config: ``` js watch:...

It is not rare that watch misses file modification. My system: Ubuntu 14.04 grunt: v0.4.5 grunt-contrib-watch: 0.6.1 The last time it happened - the application thrown error into stderr, after...

Since the upgrade to watch `1.0.0`, my 'on watch' event is getting called multiple times _when the watch task specifies something that builds / updates files_ -- this is divergent...

this is the first time I have this problem. I always use pretty much the same gruntfile configurations but at some point, my tasks are just hanging. more precisely they...

So once every 100 successful builds the watch just stops after printing "Done, without errors" although it never exits usually. ``` module.exports = function(grunt) { require('load-grunt-tasks')(grunt); // npm install --save-dev...