Socket
Socket
Sign inDemoInstall

sass-folder-converter

Package Overview
Dependencies
3
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    sass-folder-converter

Allows you to convert folders containing Sass files to CSS to another folder.


Version published
Weekly downloads
4
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Sass Folder Converter

Allows you to simply convert folders containing Sass files to CSS to another folder.

Installation

This is a Node.js module available through the NPM registry.

Use the following NPM command to install the package:

npm install sass-folder-converter

Exemple

const convertSass = require("sass-folder-converter");

Simply:

convertSass(__dirname + "/sass/", __dirname + "/css/");

Or custom...

convertSass(
    __dirname + "/sass/", // your Sass folder
    __dirname + "/css/", // the CSS destination folder
    "expanded", // optional, output style "compressed" or "expanded"
    true // optional, if true, this create the destination folder if it doesn't exist
);

Keywords

FAQs

Last updated on 08 Sep 2020

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc