Skip to content

Instantly share code, notes, and snippets.

View frontendbeast's full-sized avatar

Darren Jansson frontendbeast

View GitHub Profile
@frontendbeast
frontendbeast / gist:0b2a0e6154f2bd45d560
Created July 17, 2015 14:17
gulp-minify-css settings
var minifyCssOpts = {
advanced: false,
mediaMerging: false,
processImport: false,
roundingPrecision: 6
};
gulp.src([ '**/*.scss' ])
.pipe( postcss([ autoprefixer({ browsers: '> 5% in my stats', stats: 'path/to/the/stats.json' }) ]) )
.pipe(gulp.dest())