Skip to content

Commit 5e52f2b

Browse files
committed
fix: update autoprefixer browserslist config to address warning messages
1 parent ee5cd1a commit 5e52f2b

File tree

2 files changed

+7
-13
lines changed

2 files changed

+7
-13
lines changed

packages/uikit-workshop/package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,5 +117,10 @@
117117
"whendefined": "^0.0.1",
118118
"wolfy87-eventemitter": "^5.2.6",
119119
"yargs": "^13.3.0"
120-
}
120+
},
121+
"browserslist": [
122+
">0.25%",
123+
"ie 11",
124+
"not op_mini all"
125+
]
121126
}

packages/uikit-workshop/webpack.config.js

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,7 @@ module.exports = function() {
5757
loader: 'postcss-loader',
5858
options: {
5959
sourceMap: config.sourceMaps,
60-
plugins: () => [
61-
autoprefixer({
62-
browsers: [
63-
'last 2 version',
64-
'safari 5',
65-
'ie 8',
66-
'ie 9',
67-
'opera 12.1',
68-
'android 4',
69-
],
70-
}),
71-
],
60+
plugins: () => [autoprefixer()],
7261
},
7362
},
7463
{

0 commit comments

Comments
 (0)