1.0.0 • Published 7 months ago

postcss-simple-scope v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

postcss-simple-scope

Input

body {
  background: red;
}

.header {
  background: black;
}

Output

body {
  background: red;
}

#scope .header {
  background: black;
}

Usage

npm i -D postcss-simple-scope
// .postcssrs.cjs
module.exports = {
  plugins: [
    require('postcss-simple-scope')({
      scope: '#scope', // required
      atRules: {
        exclude: ['keyframes', '-webkit-keyframes', '-moz-keyframes'], // default
      }, // optional
      selectors: {
        exclude: [':root', '*', 'html', 'body'], // default
      }, // optional
    }),
  ],
};
1.0.0

7 months ago