1.0.0 • Published 7 years ago

postcss-single-line v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

PostCSS Single Line

A PostCSS plugin that formats single-property rules on oneline.

Example

postcss([
    require('postcss-single-line')
])
/* Input example */
.foo {
  opacity: .5;
}

.bar {
  opacity: .5;
  outline: 1px solid red;
}
/* Output example */
.foo { opacity: .5; }

.bar {
  opacity: .5;
  outline: 1px solid red;
}