component-whitespace
v0.1.0
Published
css-whitespace plugin for Component
Readme
component-whitespace
Compile styles using css-whitespace.
Installation
npm install component-whitespaceUsage
component build --use component-whitespaceAdd your files to the styles section of your component.json
{
"name": "foo",
"path": ["local"],
"styles": ["index.styl"]
}Now this:
.foo
.bar
color: redWill be converted to this:
.foo .bar {
color: red;
}