Skip to content

Commit

Permalink
Support the last 3 major versions of all browsers with Autoprefixer
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Wheaton committed Nov 7, 2016
1 parent 38f129a commit ab14cc2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gulp/Documentation.js
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ gulp.task('Documentation-buildStyles', function () {
.pipe(Plugins.rename('demo.css'))
.pipe(Plugins.changed(Config.paths.distDocumentationCSS, {extension: '.css'}))
.pipe(Plugins.autoprefixer({
browsers: ['last 2 versions', 'ie >= 9'],
browsers: ['last 3 versions', 'ie >= 9'],
cascade: false
}))
.pipe(Plugins.cssbeautify())
Expand Down
2 changes: 1 addition & 1 deletion gulp/FabricComponents.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ gulp.task('FabricComponents-buildAndCombineStyles', function () {
})))
.pipe(Plugins.autoprefixer(
{
browsers: ['last 2 versions', 'ie >= 9'],
browsers: ['last 3 versions', 'ie >= 9'],
cascade: false
}
))
Expand Down
2 changes: 1 addition & 1 deletion gulp/SamplesBuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ gulp.task('Samples-buildStyles', function () {
.pipe(BuildConfig.processorPlugin().on('error', BuildConfig.compileErrorHandler))
.on('error', ErrorHandling.onErrorInPipe)
.pipe(Plugins.autoprefixer({
browsers: ['last 2 versions', 'ie >= 9'],
browsers: ['last 3 versions', 'ie >= 9'],
cascade: false
}))
.pipe(Plugins.rename(folder + '.css'))
Expand Down
2 changes: 1 addition & 1 deletion gulp/modules/ComponentHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var ComponentSamplesHelper = function() {
.pipe(Plugins.gulpif(outputSass, gulp.dest(destFolder)))
.pipe(processorPlugin().on('error', errorHandler))
.pipe(Plugins.autoprefixer({
browsers: ['last 2 versions', 'ie >= 9'],
browsers: ['last 3 versions', 'ie >= 9'],
cascade: false
}))
.pipe(Plugins.rename(componentName + '.css'))
Expand Down

0 comments on commit ab14cc2

Please sign in to comment.