0.1.3 • Published 8 years ago

postcss-minimize v0.1.3

Weekly downloads
15
License
MIT
Repository
github
Last release
8 years ago

PostCSS Minimize Build Status

PostCSS plugin that removes comments and minimizes each whitespace to a single space.

.foo {
    /* Input example */
}
.foo {
  /* Output example */
}

Usage

postcss([ require('postcss-minimize') ])

See PostCSS docs for examples for your environment.