Skip to content

Commit 9cb8b99

Browse files
committed
Merge pull request #193 from lglossman/master
Fix autoprefixer step
2 parents e957440 + c2f31e7 commit 9cb8b99

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

gulp/tasks/styles.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ gulp.task('styles', function () {
2121
includePaths: config.styles.sassIncludePaths
2222
}))
2323
.on('error', handleErrors)
24-
.pipe(autoprefixer('last 2 versions', '> 1%', 'ie 8'))
24+
.pipe(autoprefixer({
25+
browsers: ['last 2 versions', '> 1%', 'ie 8']
26+
}))
2527
.pipe(gulpif(
2628
createSourcemap,
2729
sourcemaps.write( global.isProd ? './' : null ))

0 commit comments

Comments
 (0)