Compiles compass project using compass, so you need to have compass installed on your machine.
npm install --save-dev broccoli-compass
npm install
npm test
Note: The API might change in subsequent 0.x versions.
var compileSass = require('broccoli-compass');
var compassTree = compileSass(tree, {
outputStyle: 'expanded'
});
if files
is omitted the entire folder will be compiled.
- compassCommand: Command to execute compass. Default to
compass
. - ignoreErrors: If set to
true
, Broccoli will only print the error instead of raising an exception. Default tofalse
- cleanOutput (slower): if
true
, css files will be processed to extract the list of images and fonts to be copied, instead the destination folder will contain all files. Default tofalse
- exclude [DEPRECATED]: deprecated in favor of
cleanOutput
option.
Please refer to the compass configuration for more details about the available options
- Aboubakr Gasmi
- All the contributors.
##License MIT