File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ module.exports = class ClarkPlugin extends Plugin {
79
79
browsers : this . browsers ,
80
80
81
81
// https://cssdb.org/
82
- stage : 4 ,
82
+ stage : 3 ,
83
83
84
84
// Disable `preserve` so that the resulting CSS is consistent among all
85
85
// browsers, diminishing the probability of discovering bugs only when
@@ -91,7 +91,16 @@ module.exports = class ClarkPlugin extends Plugin {
91
91
'custom-properties' : true ,
92
92
'custom-media-queries' : true ,
93
93
'nesting-rules' : true ,
94
- 'pseudo-class-any-link' : true
94
+ 'pseudo-class-any-link' : true ,
95
+
96
+ // These are mostly due to terribly outdated Chrome versions in the
97
+ // Android emulator or super-low-end devices.
98
+ // @TODO Remove or `preserve`, once Android emulators caught up.
99
+ 'not-pseudo-class' : true ,
100
+ 'matches-pseudo-class' : true ,
101
+ 'has-pseudo-class' : true ,
102
+
103
+ 'custom-selectors' : true
95
104
} ,
96
105
97
106
autoprefixer : {
You can’t perform that action at this time.
0 commit comments