Created
May 20, 2015 17:21
-
-
Save mikebranstein/ccd5c592e3b458ed20b6 to your computer and use it in GitHub Desktop.
basic-gulp-task-sequence
This file contains hidden or 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
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")); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment