我正在尝试匹配CSS文件的整个文件夹结构,但某个子文件夹及其包含的CSS文件除外。
考虑这个结构:
styles
css
thing1
include.css
include2.css
thing2
toBeExcluded
exclude.css
exclude2.css
在此示例中,我想要包含文件include.css
和include2.css
,但要排除thing2
子文件夹中的文件。
以下是我使用的模式gulp.src(["!./styles/css/thing2/", "!./styles/css/thing2/**/*.css", "./styles/css/**/*.css"])
但是,尽我所能,我似乎无法否定thing2
文件夹及其文件。知道我做错了吗?