gulp globbing- how to watch everything below directory
The pattern for all files under all directories is usually ./src/less/**/*.* or ./src/less/**/*, either should work. Generally speaking, it’s better to match specific files extensions — even if they should all be the same — to prevent grabbing system files or other junk. In that case, you can do ./src/less/**/*.less for just .less files, or … Read more