New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

plumber-libsass

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

plumber-libsass

Sass operation for Plumber pipelines

latest
Source
npmnpm
Version
0.4.0
Version published
Maintainers
1
Created
Source

plumber-libsass Build Status

Sass compilation operation for Plumber pipelines.

Example

var sass = require('plumber-libsass');

module.exports = function(pipelines) {

    pipelines['css'] = [
        glob('main.sass'),
        sass(),
        // ... more pipeline operations
    ];

    pipelines['icons'] = [
        glob('icons.sass'),
        sass({precision: 5}),
        // ... more pipeline operations
    ];

};

API

sass(sassOptions)

Compile each input Sass resource to a single CSS resource.

Optionally, options can be passed to the Sass compiler via the sassOptions parameter.

Note that you may not specify minimisation configuration options, such as compress or cleancss; this should be done using the plumber-mincss operation instead, to ensure atomicity of operations.

Keywords

build

FAQs

Package last updated on 04 Jul 2014

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