From c2f31e7e8cbf2646e1925433f0c1ff89d26e0b5f Mon Sep 17 00:00:00 2001 From: Leandro Glossman Date: Tue, 24 May 2016 10:39:31 -0300 Subject: [PATCH] Fix autoprefixer step --- gulp/tasks/styles.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gulp/tasks/styles.js b/gulp/tasks/styles.js index 7196cf2b..31a5428c 100644 --- a/gulp/tasks/styles.js +++ b/gulp/tasks/styles.js @@ -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 ))