From 76ea2c92c32e04137756fe6b3688683457cb6f1b Mon Sep 17 00:00:00 2001 From: Daniel Ruf Date: Sat, 16 Jun 2018 10:08:07 +0200 Subject: [PATCH] Use pull request #11021 from DanielRuf/chore/compability-update-browserslist-9123 for v6.5.0 6999b7ada chore: update the browserslist config according to the compability table 94d6eca09 chore: drop support for Android 2.3 - 4.4 Co-Authored-By: Daniel Ruf Signed-off-by: Nicolas Coden --- docs/assets/img/gulpfile.js | 2 +- docs/pages/compatibility.md | 6 ++++-- docs/pages/sass.md | 2 +- gulp/config.js | 2 +- gulp/tasks/customizer.js | 3 ++- 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/docs/assets/img/gulpfile.js b/docs/assets/img/gulpfile.js index 218e47e85..29df4da6d 100755 --- a/docs/assets/img/gulpfile.js +++ b/docs/assets/img/gulpfile.js @@ -84,7 +84,7 @@ gulp.task('sass', function() { }) .on('error', $.sass.logError)) .pipe($.autoprefixer({ - browsers: ['last 2 versions', 'ie >= 9'] + browsers: ['last 2 versions', 'ie >= 9', 'android >= 4.4', 'ios >= 7'] })) // .pipe(uncss) .pipe(gulp.dest('./dist/assets/css')); diff --git a/docs/pages/compatibility.md b/docs/pages/compatibility.md index 204b83920..f9223db08 100644 --- a/docs/pages/compatibility.md +++ b/docs/pages/compatibility.md @@ -16,7 +16,7 @@ tags: Firefox Safari Opera - Mobile Safari + Mobile Safari1 IE Mobile Edge @@ -25,10 +25,12 @@ tags: Android Browser - Versions 2.3+ + Versions 4.4+ +1iOS 7+ is actively supported but with some known bugs. + --- ## What Won't Work? diff --git a/docs/pages/sass.md b/docs/pages/sass.md index 6234587ac..1cc63af80 100644 --- a/docs/pages/sass.md +++ b/docs/pages/sass.md @@ -30,7 +30,7 @@ To get the proper browser support, use these Autoprefixer settings: ```js autoprefixer({ - browsers: ['last 2 versions', 'ie >= 9', 'Android >= 2.3', 'ios >= 7'] + browsers: ['last 2 versions', 'ie >= 9', 'android >= 4.4', 'ios >= 7'] }); ``` diff --git a/gulp/config.js b/gulp/config.js index 1c5884c18..4c89f6131 100644 --- a/gulp/config.js +++ b/gulp/config.js @@ -48,7 +48,7 @@ module.exports = { CSS_COMPATIBILITY: [ 'last 2 versions', 'ie >= 9', - 'Android >= 2.3', + 'android >= 4.4', 'ios >= 7' ], diff --git a/gulp/tasks/customizer.js b/gulp/tasks/customizer.js index f4bffcd68..9a8cbe27d 100644 --- a/gulp/tasks/customizer.js +++ b/gulp/tasks/customizer.js @@ -33,7 +33,8 @@ var OUTPUT_DIR = ARGS.output || 'custom-build'; var COMPATIBILITY = [ 'last 2 versions', 'ie >= 9', - 'and_chr >= 2.3' + 'android >= 4.4', + 'ios >= 7' ]; var CUSTOMIZER_CONFIG; var MODULE_LIST; -- 2.47.3