Created
October 13, 2015 13:50
-
-
Save demofan/86293910bb65a03e1bd9 to your computer and use it in GitHub Desktop.
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
gulp.task("前端:darkCSS", function () { | |
gulp.src( | |
[ | |
paths.cssSource + "theme-dark.css" | |
]) | |
.pipe(concat(paths.assets + "css/theme-dark.css")) | |
.pipe(minifycss()) | |
.pipe(gulp.dest(".")) | |
.pipe(notify({ message: "前端:darkCSS" })); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment