Kyle Robinson Young
Kyle Robinson Young
Be sure to check out the v0.5 branch. Lots of changes happening there for the next version. Also we should keep the patterns true to what [globule](https://npmjs.org/package/globule) provides for compatibility....
gaze works on file patterns rather than file paths, so you're correct about using the `cwd` option if you're targeting files in a different `cwd` than `process.cwd()`. You should get...
Hey! Thanks for diving into this. As long as all the tests pass with `npm test` all the use cases we support should be good. Feel free to open a...
Certain versions of gaze need to watch folders to check if files get added to them that match the pattern you've indicated. It should only watch the immediate folders in...
Sure but it would be a ton of work for very little gain, imo.
Which OS, version and nodejs version?
Sorry for the issues, please rollback to `0.5.1`. I'm going to work on packaging the builds for each platform into the package to avoid having users to compile them.
@UltCombo Yes I've got the builds packaging done and am now focused on the next big issue #104. I've got a solution in place but it has broken some existing...
Could you post the patterns that you've tried? The patterns are order dependent where the next pattern takes precedence over the previous. Also negate patterns work just like regular patterns...
globule does support the negate pattern and so does gaze. We both have tests for it https://github.com/cowboy/node-globule/blob/master/test/globule_test.js#L188 and https://github.com/shama/gaze/blob/master/test/patterns_test.js#L28 Consider the patterns `['**/*', '!**/node_modules/**']`. This will _first_ get a list...