From a4f6da8bdc42b0b8f413a9cd5bb6977059d6405d Mon Sep 17 00:00:00 2001 From: Jonas Kuske <30421456+jonaskuske@users.noreply.github.com> Date: Sun, 31 May 2020 01:30:58 +0200 Subject: [PATCH] refactor: use env-less browserslist --- gulpfile.js | 2 +- package.json | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index c6032f5..4e21ebd 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -66,7 +66,7 @@ const style = () => { .pipe(endDiff('css variables')) .pipe(startDiff()) - .pipe(postcss([autoprefixer({ env: 'legacy' })])) + .pipe(postcss([autoprefixer()])) .pipe(endDiff('autoprefixer')) .pipe(sourcemaps.write('.')) diff --git a/package.json b/package.json index 74a93ff..908786b 100644 --- a/package.json +++ b/package.json @@ -64,11 +64,9 @@ "stylelint": "^13.5.0", "stylelint-config-standard": "^20.0.0" }, - "browserslist": { - "legacy": [ + "browserslist": [ "defaults AND not android 4.4.3" - ] - }, + ], "files": [ "dist/*.css", "LICENSE.md"