June 10, 2014
October 17, 2017
JavaScript (26.35 kB), Shell (1.52 kB)
21
21
27692
1201
contra on June 10, 2014 for vinyl-fs update
This is now possible!
gulp.src('lib/*.js')
.pipe(uglify())
.pipe(gulp.src('styles/*.css'))
.pipe(gulp.dest(function(file){
// i dont know, you can do something cool here
return 'build/whatever';
}));