Socket
Socket
Sign inDemoInstall

merge-sass

Package Overview
Dependencies
14
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    merge-sass

This tool can merge non-compiled SASS


Version published
Maintainers
1
Created

Readme

Source

merge-sass

This tool can merge non-compiled SASS

Installation

npm install merge-sass --save-dev

Online test

https://iceleo-com.github.io/merge-sass/index.html

Example

const fs = require('fs');
const mergeSass = require('merge-sass');

const result = mergeSass(
    fs.readFileSync('/path_to_target_sass_file.scss'),
    fs.readFileSync('/path_to_update_sass_file.scss'),
);

Target Rules

body {
    background: red;
    text-decoration: none;
}

body {
    background: blue;
    margin: 10px;
}

Update Rules

body {
    background: green;
    margin: 0 10px;
    text-align: center;
}

Expected Rules

body {
    background: green;
    text-decoration: none;
    margin: 0 10px;
    text-align: center;
}

Contribution

This tool has a lot of limits but I have no time to make it better, so every contribution is welcome.

Keywords

FAQs

Last updated on 12 Aug 2021

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