3.1.0 • Published 9 years ago

duo-sass v3.1.0

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

duo-sass Build Status

Sass plugin for Duo

Install

$ npm install duo-sass

Usage

From the CLI:

$ duo --use duo-sass input.scss output.css

Using the API:

var Duo = require('duo');
var sass = require('duo-sass');

var duo = Duo(__dirname)
  .entry('index.scss')
  .use(sass());

duo.run(function (err, file) {
  if (err) {
    throw err;
  }

  console.log(file);
  //=> body div a { color: red }
});

Options

See the node-sass options.

License

MIT © duojs

3.1.0

9 years ago

3.0.1

9 years ago

3.0.0

9 years ago

2.0.0

9 years ago

1.2.1

9 years ago

0.1.1

10 years ago

0.1.0

10 years ago