Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sass-folder-converter

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

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.

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
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

Package last updated on 08 Sep 2020

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