postcss-media-query-filter
0.1.0 • Public • Published postcss-media-query-filter 
PostCSS plugin which allows to remove undesirable media-queries from output depending on provided min/max width
Let's assume next options were provided to plugin:
{
minWidth: 500,
maxWidth: 1000,
}
Input:
@media all and (min-width: 100px) {
.cn1 {
color: red;
}
}
@media all and (min-width: 200px) and (max-width: 600px) {
.cn2 {
color: blue;
}
}
@media all and (max-width: 400px) {
.cn3 {
color: green;
}
}
@media all and (min-width: 1200px) {
.cn4 {
color: white;
}
}
Output:
.cn1 {
color: red;
}
@media all and (min-width: 200px) and (max-width: 600px) {
.cn2 {
color: blue;
}
}
Usage
postcss([ require('postcss-media-query-filter')(options) ])
Options:
- minWidth - Number (defaults to -Infinity) - styles for lower width will be treated as not needed
- maxWidth - Number (defaults to Infinity) - styles for higher width will be treated as not needed
- type - String (defaults to screen) - media query type which will be used by css-mediaquery for matching (all, screen, print etc)
See PostCSS docs for examples for your environment.
Versions
Version | Downloads (Last 7 Days) | Tag |
---|
0.1.0 | 244 | latest |
Version History
Version | Downloads (Last 7 Days) | Published |
---|
0.1.0 | 244 | |
Package Sidebar
Install
npm i postcss-media-query-filter
Weekly Downloads