diff --git a/gulpfile.js b/gulpfile.js index c6032f52..5a6b03eb 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('.')) @@ -118,7 +118,7 @@ const docs = () => { // * Process CSS * .pipe(cssOnly) .pipe(sourcemaps.init()) - .pipe(postcss([cssnano()])) + .pipe(postcss([autoprefixer(), cssnano()])) .pipe(sourcemaps.write('.')) .pipe(cssOnly.restore) diff --git a/package.json b/package.json index 74a93ffb..adfb4e1d 100644 --- a/package.json +++ b/package.json @@ -64,11 +64,9 @@ "stylelint": "^13.5.0", "stylelint-config-standard": "^20.0.0" }, - "browserslist": { - "legacy": [ - "defaults AND not android 4.4.3" - ] - }, + "browserslist": [ + "defaults" + ], "files": [ "dist/*.css", "LICENSE.md"