-
Notifications
You must be signed in to change notification settings - Fork 167
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
question: why watch foo/*/ when only watching foo/bar.js? #204
Comments
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 the directory and not all subdirectories. For instance if you had the pattern |
Indeed but if you only care about changed files, could the extra watches be On Thursday, November 5, 2015, Kyle Robinson Young [email protected]
Christopher Hiller |
Sure but it would be a ton of work for very little gain, imo. |
In this case I'm leveraging
grunt-contrib-watch
to watchGruntfile.js
.Instead, Gaze watches
Gruntfile.js
and every subdirectory ofGruntfile's
dirpath. I don't understand why.The text was updated successfully, but these errors were encountered: