Skip to content

Commit 8c5c878

Browse files
committed
refactor(postcss): use pkg browserslist in postcss config
1 parent f504d70 commit 8c5c878

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@
139139
"> 1%",
140140
"last 2 versions",
141141
"not ie <= 8",
142-
"not ie <= 11",
143142
"Android >= 4.0",
144143
"iOS >= 8"
145144
]

postcss.config.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
module.exports = {
22
plugins: [
33
require('autoprefixer')({
4-
browsers: [
5-
"> 1%",
6-
"last 2 versions",
7-
"not ie <= 8",
8-
"iOS 8"
9-
]
4+
browsers: require('./package.json').browserslist
105
})
116
]
127
}

0 commit comments

Comments
 (0)