New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

duo-sass

Package Overview
Dependencies
Maintainers
3
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

duo-sass

Sass plugin for Duo

  • 3.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-81.25%
Maintainers
3
Weekly downloads
 
Created
Source

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

Keywords

FAQs

Package last updated on 27 Mar 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc