You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parcel converts "min-width" media queries in Sass to "width >=" queries, even though one browser in my browserslist does not support such queries
#10008
Open
rhaglennydd opened this issue
Nov 12, 2024
· 2 comments
If you look at the caniuse.com link, it shows that globally that syntax is only supported by 91.9% of browsers, so the fact that I included "> 1%" in browserslist should be enough to prevent it from being applied. I shouldn't have to modify browserslist.
🐛 bug report
🎛 Configuration (.babelrc, package.json, cli command)
My package.json looks like this:
If I run
browserslist
from the command line, this appears in the output:caniuse.com says that UC Browser for Android does not support these kinds of media queries as of version 15.5: https://caniuse.com/?search=css%20media%20range
😯 Current Behavior
A media query like
@media (min-width: 1000px)
gets converted to@media (width >= 1000px)
. I ranupdate-browserslist-db
, but that made no difference.💁 Possible Solution
🔦 Context
💻 Code Sample
🌍 Your Environment
The text was updated successfully, but these errors were encountered: