Socket
Socket
Sign inDemoInstall

postcss-only-one-root

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-only-one-root

Removes all but one instance of :root


Version published
Maintainers
1
Created
Source

npm version npm

Postcss only one :root

A PostCSS plugin to remove all instances of “:root” but one from a stylesheet.

This plugin is very basic. It removes all instances of :root except for the first it encounters from a processed stylesheet (if present). I built this as I used automatical localised imports for my Webpack scss files, which occured in duplicate references to the :root selector variables.

Otherwise, you probably have no use for this plugin. You should run this plugin after running [postcss-custom-properties]

Installation

npm install --save postcss-only-one-root

Example

variables.scss

:root {
    --color-blue: blue;
}

file.a.scss

@import "./variables";
.something-1 {
    color: var(--color-blue);
}

file.b.scss

@import "./variables";
.something-2 {
    color: var(--color-blue);
}

Output

:root {
    color-blue: blue
}
.something-1 {
    color: blue;
    color: var(--color-blue);
}
.something-2 {
    color:blue;
    color: var(--color-blue);
}

Usage

See the PostCSS documentation for examples on how to use this plugin in different environments. This plugin takes no options.

Changelog

Keywords

FAQs

Package last updated on 20 Jun 2018

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