sass-css-stream
v2.0.0
Published
sass to css transform
Downloads
54
Readme
sass-css-stream
A sass to css stream wrapper around node-sass.
Takes a file argument and an optional opts argument that is passed through to node-sass. Returns a through stream that has sass contents written in and outputs the compiled css.
Can be as a parcelify or cartero transform.
#example
var sassCssStream = require( '../' );
var fs = require( 'fs' );
var path = require( 'path' );
var inputFile = path.join( __dirname, "sampleStyle.scss" );
var opts = { includePaths : [ path.resolve( __dirname, 'bourbon' ) ] };
fs.createReadStream( inputFile ).pipe( sassCssStream( inputFile, opts ) ).pipe( process.stdout );
#usage
sassCssStream( file [, opts ] )
file
- the sass file to transform
opts
- optional options hash passed through to node-sass.renderSync