Closed jenstornell closed 7 years ago
I tried this but it did not work.
gulp.task('css', function() { gs( [ 'site/bricks/global/global.scss', 'site/bricks/**/*.scss', '!site/bricks/global/domain*.scss', 'site/bricks/global/domain.my-domain.se.scss' ]) .pipe(concat('style.scss')) .pipe(sass().on('error', sass.logError)) .pipe(gulp.dest('assets/css')) });
I replaced gulp.src with gs. Why I want to use glob-stream instead of gulp.src is because I want to reinclude my last domain file, which does not work with gulp.src.
gulp.src
gs
glob-stream
I did not figure out how to use it in a gulp task. Maybe someone knows?
Not a replacement for gulp.src - this is a low level library used to build gulp.src and not something you want to use directly
I tried this but it did not work.
I replaced
gulp.src
withgs
. Why I want to useglob-stream
instead ofgulp.src
is because I want to reinclude my last domain file, which does not work withgulp.src
.I did not figure out how to use it in a gulp task. Maybe someone knows?