Is it a good idea if I set a gulp watcher for e.g. /**/*.less
on the root folder of my project, rather than on the folder containing the .less files? The root folder may contain a large amount of files (node_modules, CMS Data, etc.).
The benefit would be flexibility in where to place the less folder without changing any paths in the config with the goal of eliminating the config completely.
The alternative would be searching for the lowest common ancestor starting from root, but I imagine this a heavy task.