peer-deps-test v1.0.1
broccoli-sass
The broccoli-sass plugin compiles .scss and .sass files with
libsass.
This is a fork of broccoli-sass that includes support for more options and provides (partial)
support for source maps by embedding the content of the SASS source files in the source map using sourcesContent.
Be aware that the paths in the generated source map not correct, but this module does what I need until the underlying issue is resolved.
Installation
npm install --save-dev broccoli-sass-source-mapsUsage
var compileSass = require('broccoli-sass-source-maps');
var outputTree = compileSass(inputTrees, inputFile, outputFile, options);inputTrees: An array of trees that act as the include paths for libsass. If you have a single tree, pass[tree].inputFile: Relative path of the main.scssor.sassfile to compile. Broccoli-sass expects to find this file in the first input tree (inputTrees[0]).outputFile: Relative path of the output CSS file.options: A hash of options for libsass. Supported options are:imagePath,indentedSyntax,omitSourceMapUrl,outputStyle,precision,sourceComments,sourceMap,sourceMapEmbed, andsourceMapContents.
Example
var appCss = compileSass(['styles', 'vendor'], 'myapp/app.scss', 'assets/app.css');