1.2.1 • Published 10 years ago

duosass v1.2.1

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

duo-sass Build Status

Sass plugin for Duo

Install

$ npm install duosass

Usage

From the CLI:

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

Using the API:

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

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

1.2.1

10 years ago

1.2.0

10 years ago

1.1.1

10 years ago

1.1.0

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago