Skip to content

Commit

Permalink
Issue #3034452 by pzajacz, Balu Ertl: Fix Gulp autoprefixer
Browse files Browse the repository at this point in the history
  • Loading branch information
pzajacz authored and Balu Ertl committed Feb 20, 2019
1 parent d7ebea1 commit f89e136
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ gulp.task('sass', function () {
.src('modules/parade_demo/sass/**/*.{scss,sass}')
.pipe(sourcemaps.init())
.pipe(sass(sassOptions).on('error', sass.logError))
.pipe(autoprefixer())
.pipe(autoprefixer({browsers: ['last 10 version', 'ie >= 10']}))
.pipe(sourcemaps.write('modules/parade_demo/css'))
.pipe(gulp.dest('modules/parade_demo/css'));

Expand Down

0 comments on commit f89e136

Please sign in to comment.