diff --git a/gulpfile.js b/gulpfile.js index 36e1c767c..406bbfe73 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -80,9 +80,10 @@ const config = JSON.parse(fs.readFileSync(CONFIG_FILE).toString()); const ENV_TARGETS = [ "last 2 versions", - "Chrome >= 76", + "Chrome >= 85", "Firefox ESR", - "Safari >= 13.1", + "Safari >= 14", + "Node >= 14", "> 1%", "not IE > 0", "not dead", @@ -1400,7 +1401,7 @@ gulp.task( postcss([ postcssLogical({ preserve: true }), postcssDirPseudoClass(), - autoprefixer({ overrideBrowserslist: ["Chrome >= 76"] }), + autoprefixer({ overrideBrowserslist: ["Chrome >= 85"] }), ]) ) .pipe(gulp.dest(CHROME_BUILD_CONTENT_DIR + "web")), @@ -1973,7 +1974,7 @@ gulp.task("dev-css", function createDevCSS() { postcss([ postcssLogical({ preserve: true }), postcssDirPseudoClass(), - autoprefixer({ overrideBrowserslist: ["last 2 versions"] }), + autoprefixer({ overrideBrowserslist: ["last 1 versions"] }), ]) ) .pipe(gulp.dest(cssDir)),