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

It seems to me as if `options.cwd.spawn` gets bulldozed by https://github.com/gruntjs/grunt-contrib-watch/blob/v0.6.1/tasks/watch.js#L98-L101, so by the time it gets checked in https://github.com/gruntjs/grunt-contrib-watch/blob/v0.6.1/tasks/lib/taskrun.js#L75, it's no longer defined. Am I missing something? Context: I'm...

Watch is triggered when an ignored directory is created: > Scheduled tasks have been interrupted...>> File "app/_build" added. This directory is ignored in the files list: `'!app/_build/'` but it seems...

After installing angular material bower component,grunt-contrib-watch is not working. It displays only below output.It does not reload the browser. **Completed in 1.101s at Fri Oct 21 2016 18:48:10 GMT+0530 (India...

Recently, when I try to run my watch command, it hangs for a short while then just quits without erroring. Any idea what might be happening? I've tried running the...

I have a task configured as follows: ``` ... watch: { 'convert-model': { files: [ 'src/ch.actifsource.cloud.model/**/*.asr' ], tasks: [], options: { spawn: true, interrupt: false, atBegin: true }, } ......

grunt-contrib-watch would not work with the following configuration ``` js grunt.config.set('watch', { scripts: { files: '**/*.js', options: { spawn: true } } }); ``` but it did with this: ```...

Test case repository: https://github.com/SCdF/grunt-contrib-watch-watches-dirs-by-mistake Basically, given the following watch config: ``` js watch: { shouldFire: { files: ['shouldFire', 'shouldFireDir/shouldFire'], tasks: ['printstuff'] } } ``` I would expect that only two...

I'm using _watch_ and _nodemon_ with _concurrent_. The problem is that _nodemon_ restarts when server files change but only _watch_ triggers livereload currently, I use _watch_ for watching server files...

Context: here is a problem I had a little while back. I had a grunt `watch` task like so: ``` js watch: { express: { files: [ 'server/**/*.{js,json}', '!server/influx/**' //this...

When am using livereload by inserting script tag "//localhost:35729/livereload.js" its working fine for me and page also reloading but in console am getting error as "Fatal error: Port 9001 is...