Skip to content

Commit

Permalink
Tweak autoprefixer
Browse files Browse the repository at this point in the history
  • Loading branch information
veloce committed Oct 2, 2016
1 parent 98a300c commit ca40a2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function buildHtml(src, dest, context) {
function buildStyl(src, dest, mode) {
return gulp.src(src)
.pipe(stylus())
.pipe(streamify(autoprefixer({ browsers: ['and_chr > 50', 'ios_saf > 9']})))
.pipe(streamify(autoprefixer({ browsers: ['and_chr >= 50', 'ios_saf >= 9']})))
.pipe(gulpif(mode === 'prod', minifyCss()))
.pipe(rename('app.css'))
.pipe(gulp.dest(dest + '/css/compiled/'));
Expand Down

0 comments on commit ca40a2b

Please sign in to comment.