styl-stream

0.0.1 • Public • Published

styl-stream

styl as a stream

Compiles the contents of .styl and .css files with styl.

Install

$ npm install --save-dev styl-stream

Usage

var stylStream = require('styl-stream');
 
fs.createReadStream('file.css')
  .pipe(stylStream('file.css'))
  .pipe(process.stdout)

Or with browserify as a transform:

{
  "browserify": {
    "transform": ["styl-stream"]
  }
}

License

MIT © Andrew Joslin

Dependencies (3)

Dev Dependencies (3)

Package Sidebar

Install

npm i styl-stream

Weekly Downloads

0

Version

0.0.1

License

MIT

Last publish

Collaborators

  • andytjoslin