Kyle Robinson Young
Kyle Robinson Young
Hmm ok. The highest version I've tested was Windows 8 (and we've got continuous integrations running on windows azure via appveyor now). I'll update my windows 8 box to 8.1...
Rad thanks for attempting this! Have you seen the [navelgazer branch](https://github.com/shama/gaze/tree/navelgazer)? In there I am consuming navelgazer as a dependency and it gets a bit further on the tests with...
Try this instead: ``` javascript gaze('**/*', { cwd: __dirname + '/../public/assets/javascripts/', maxListeners: 999 }, function(err, watcher) { // ... ``` It works based on patterns, so when using absolute paths...
Hmm strange. I can't reproduce on Windows 7 and don't have access to a Win 8.1 machine atm. So, if you can track down the issue on Windows 8.1 that...
Gaze uses file patterns instead of file paths to watch files. Try this instead: ``` js gaze('*', { cwd: base }, function () { this.on('all', function (event, filepath) { console.log(filepath...
Could you provide an example of what you have tried? Thanks!
Try this instead and let me know if that fixes it. ``` gaze('**/*.coffee', { cwd: 'c:/w-jobs/' }, function(err, watcher) { ```
It looks like the `EMFILE` error just isn't being caught properly. Looking into a fix.
Could you try with the master branch (the next version)? `npm install shama/gaze`. This should be fixed there.
Oh interesting. Technically the file is being renamed if moved into the trash as opposed to deleted, right? Do you get a deleted event if you `rm toto` from the...