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

**TLDR:** Added `renamed` event for options.event's documentation. **What:** The `renamed` event isn't mentioned in the options.event documentation. This event is triggered when a watched file name is changed. Here's a...

I use grunt-sass and grunt-watch to compile and minify my code ``` grunt.config('watch', { scripts: { files: ['/*.js'], tasks: ['concat:scripts', 'uglify:compile'] }, styles: { files: [ '/**/*.scss' ], tasks: ['sass:compile',...

Node.js versions below 10.x are not maintained anymore, so it is probably best to use some newer, still maintained versions. For release cyles of Node.js see the official site: .

Hello. With new node.js says deprecated warnings :( Have someone same issue? I love this plugin, i would like to continue use it

This addresses #406. However, I do have questions. 1) I'm not positive that `grunt.fail.fatal` is the right approach. Maybe it should just do nothing and move on to the next...

Fixes issues with Gaze sending incorrect hits on some systems (tested on OSX). An example of this is creating directories in the same folder as a watched file.

This fixes issue #510, by keeping the watchers when the task is running (i.e. when `nospawn` is used). In `spawn` mode, the watchers are closed and recreated as before. I...

…since the latter already changed to these directories (proposed fix for gruntjs/grunt-contrib-watch#433).

Mute output by providing task level option `silently: true`. When grunt runs in verbose mode (e.g. `--verbose` command line option) output is always logged no matter if the option is...