I have a gulp task that looks like this, just the src
part:
gulp.src(
[
'site/bricks/global/global.scss',
'site/bricks/**/*.scss',
'!site/bricks/global/domain*.scss',
'site/bricks/global/domain.mydomain.com.scss'
])
I expect it to do this:
- Load
global.scss
first (works) - Load the rest of the scss files (works)
- Exclude all but domain (works)
- Include one of my domains back (does not work)
So for some reason I can't add a domain back to the list. Any ideas?