postcss-expand-selectors

2.0.0 • Public • Published

PostCSS Expand Selectors

CircleCI codecov

PostCSS plugin to expand comma separated selectors into individual rules.

SCSS source

a {
  e: f;
}

b,
c {
  g: h;
}

d {
  i: j;
}

Compile the SCSS files with these options: { sourceComments: true, outputStyle: 'expanded' }

CSS before

a {
  e: f;
}

/* line 4, style.css */
b,
c {
  g: h;
}

d {
  i: j;
}

Usage

postcss([ require('postcss-expand-selectors') ])

CSS after

a {
  e: f;
}

/* line 4, style.css */
b {
  g: h;
}

/* line 4, style.css */
c {
  g: h;
}

d {
  i: j;
}

When to use this plugin

If there are no comma separated selectors in a rule then you can get a more accurate CSS coverage report from Google Chrome with Puppeteer.

So use this plugin only when you prepare your application for CSS coverage generation with Google Chrome, but do not use this plugin when you create production release.

Dependencies (0)

    Dev Dependencies (16)

    Package Sidebar

    Install

    npm i postcss-expand-selectors

    Weekly Downloads

    3

    Version

    2.0.0

    License

    MIT

    Unpacked Size

    4.35 kB

    Total Files

    4

    Last publish

    Collaborators

    • sweetchuck