Kyle Robinson Young
Kyle Robinson Young
Could you try with the latest stable version of node.js? `v0.10.x`. Odd versions are considered unstable. That may or may not be the reason. The specific number of files is...
FWIW, the next version of gaze (the underlying library grunt-contrib-watch uses for watching files) will attempt it's own native solution. So far it seems to be able to watch a...
I think this will require more thought. Events don't work well with Grunt. You can't do much with an event besides logging so I think just logging a `Waiting...` message...
The location you moved the event still won't emit once all watchers are actually ready. You would need to track how many watchers we will be opening, then once all...
Is `E:\` a networked drive? and which version of node.js? Thanks!
Which version of windows and version of grunt-contrib-watch? Thanks!
Could you post your Gruntfile and node.js version? Thanks!
@JKAussieSkater I'm not too familiar but the docs are built with gollum correct? So depending on the tags, using HTML in the markdown should work: https://github.com/gollum/gollum/wiki/Security#page-sanitization. As for Jade, they...
Just do `grunt watch`. The watch task will already watch all targets in your watch config concurrently and then only run the tasks configured for the corresponding files.
You can do a dynamic alias task: ``` js // Run with: grunt switchwatch:target1:target2 to only watch those targets grunt.registerTask('switchwatch', function() { var targets = Array.prototype.slice.call(arguments, 0); Object.keys(grunt.config('watch')).filter(function(target) { return...