JSPM

  • Created
  • Published
  • Downloads 10560367
  • Score
    100M100P100Q239774F
  • License MIT

Minify at-rule params with PostCSS

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 Build Status

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