Skip to content

Instantly share code, notes, and snippets.

@magsout
Created February 7, 2015 10:57
Show Gist options
  • Save magsout/077dcaa65ce66feac5f1 to your computer and use it in GitHub Desktop.
Save magsout/077dcaa65ce66feac5f1 to your computer and use it in GitHub Desktop.
/* gulp stylesheets or gulp stylesheets --production */
gulp.task("stylesheets", function() {
return gulp.src("./assets/css/admin.css")
.pipe(options.production ? plumber() : gutil.noop())
.pipe(cssnext({
sourcemap : !options.production,
browsers : ['ff >= 30', 'ie >= 8', 'safari >= 5.1', 'opera >= 12', 'chrome >=20']
}))
.pipe(options.production ? minifyCSS({keepSpecialComments:0}) : gutil.noop())
.pipe(gulp.dest("./assets/build/stylesheets"))
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment