Skip to content

Instantly share code, notes, and snippets.

@mikebranstein
Created May 20, 2015 17:28
Show Gist options
  • Save mikebranstein/0ea6b784cd653a721497 to your computer and use it in GitHub Desktop.
Save mikebranstein/0ea6b784cd653a721497 to your computer and use it in GitHub Desktop.
gulp-multiple-dest
var gulp = require("gulp");
var minify = require("gulp-minify-css");
gulp.task("css", function () {
return gulp.src("./style/style.css")
.pipe(minify())
.pipe(dest("./output/style"))
.pipe(dest("./anotherOutput/style));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment