Preprocess CSS with Styl
npm install broccoli-styl> Preprocess CSS with Styl
``bash`
$ npm install --save broccoli-styl
`js
var calc = require('rework-calc');
var styl = require('broccoli-styl');
tree = styl(tree, { use: function (css) {
css.use(calc);
}});
`
Initialize a new styl with the given string of regular CSS or whitespace-significant style CSS.
Type: Function undefined
Default:
Accepts a function that gives you the ability to interact with styl before
compiling. Useful for adding on plugins, etc.
Type: Boolean false`
Default:
Utilize CSS whitespace transformations.
MIT © Kevin Mårtensson