Skip to content

Instantly share code, notes, and snippets.

@demofan
Created October 13, 2015 13:50
Show Gist options
  • Save demofan/86293910bb65a03e1bd9 to your computer and use it in GitHub Desktop.
Save demofan/86293910bb65a03e1bd9 to your computer and use it in GitHub Desktop.
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