0.0.1 • Published 9 years ago

styl-stream v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

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