1.0.0 • Published 8 years ago
postcss-single-line v1.0.0
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;
}1.0.0
8 years ago