gulp 模式递归如何工作**/*
How do gulp pattern recursive work **/*
我开始使用 gulp,我有点难以理解 glob 在 gulp 中的工作原理。
为什么要 **/*
复制所有目录结构(如何工作)
Gulp 使用 glob module. Rules for globbing can be found in its repo.
*
Matches 0 or more characters in a single path portion
**
If a "globstar" is alone in a path portion, then it matches zero or more directories and subdirectories searching for matches. It does not crawl symlinked directories.
**
表示 "recursively descend through subdirectories" 而 *
表示 "match any path".
扩展文件夹结构css/**/*.css
**
表示递归。
这意味着您告诉 gulp 进入 css 文件夹及其所有子目录 并编译所有具有扩展名的文件。css
我开始使用 gulp,我有点难以理解 glob 在 gulp 中的工作原理。
为什么要 **/*
复制所有目录结构(如何工作)
Gulp 使用 glob module. Rules for globbing can be found in its repo.
*
Matches 0 or more characters in a single path portion**
If a "globstar" is alone in a path portion, then it matches zero or more directories and subdirectories searching for matches. It does not crawl symlinked directories.
**
表示 "recursively descend through subdirectories" 而 *
表示 "match any path".
扩展文件夹结构css/**/*.css
**
表示递归。
这意味着您告诉 gulp 进入 css 文件夹及其所有子目录 并编译所有具有扩展名的文件。css