Stylecow plugin to add support to some Media Queries Level 4 syntax
npm install stylecow-plugin-media-queriesstylecow plugin media-queries
=============================

Stylecow plugin to add support for some syntax of Media Queries Level 4
You write:
``css`
@media (width < 500px) {
body {
color: blue;
}
}
@media (500px <= width <= 800px) {
body {
color: red;
}
}
And stylecow converts to:
`css``
@media (max-width: 499.999px) {
body {
color: blue;
}
}
@media (min-width: 500px) and (max-width: 800px) {
body {
color: red;
}
}
More demos in the tests folder