i started to use gulp, i have a little difficulty understand how globs work in gulp.
Why do **/*
copy all directory structure(how it work)
i started to use gulp, i have a little difficulty understand how globs work in gulp.
Why do **/*
copy all directory structure(how it work)
Gulp uses the glob module. Rules for globbing can be found in its repo.
**
means "recursively descend through subdirectories" while*
means "match any path".