Skip to content

Commit

Permalink
Fix autoprefixer step
Browse files Browse the repository at this point in the history
  • Loading branch information
Leandro Glossman committed May 24, 2016
1 parent e957440 commit c2f31e7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gulp/tasks/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ gulp.task('styles', function () {
includePaths: config.styles.sassIncludePaths
}))
.on('error', handleErrors)
.pipe(autoprefixer('last 2 versions', '> 1%', 'ie 8'))
.pipe(autoprefixer({
browsers: ['last 2 versions', '> 1%', 'ie 8']
}))
.pipe(gulpif(
createSourcemap,
sourcemaps.write( global.isProd ? './' : null ))
Expand Down

0 comments on commit c2f31e7

Please sign in to comment.