Skip to content

Commit

Permalink
Merge pull request #193 from lglossman/master
Browse files Browse the repository at this point in the history
Fix autoprefixer step
  • Loading branch information
jakemmarsh committed May 24, 2016
2 parents e957440 + c2f31e7 commit 9cb8b99
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 9cb8b99

Please sign in to comment.