Created
February 9, 2014 17:12
-
-
Save rorhug/8902316 to your computer and use it in GitHub Desktop.
merging streams
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Sass and css libs | |
gulp.task('css', function () { | |
var sassStream = gulp.src('./assets/*.scss').pipe(sass()); | |
var cssFiles = gulp.src('./assets/csslib/*.css'); | |
var queue = new StreamQueue(); | |
queue.queue( | |
cssFiles, | |
sassStream | |
); | |
queue.done(); | |
queue.pipe(concat('comp.css')) | |
.pipe(gulp.dest('./public/css')); | |
}); |
nfroidure
commented
Feb 9, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment