Package Exports
- postcss-minify-params
- postcss-minify-params/src/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (postcss-minify-params) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
postcss-minify-params 
Minify at-rule params with PostCSS.
@media only screen and ( min-width: 400px, min-height: 500px ) {
h2{
color:blue
}
}
@media only screen and (min-width:400px,min-height:500px) {
h2{
color:blue
}
}
Usage
postcss([ require('postcss-minify-params') ])
See PostCSS docs for examples for your environment.
Contributors
See CONTRIBUTORS.md.
License
MIT © Bogdan Chadkin