@tillschander/postcss-prefix-all-rules

1.0.2 • Public • Published

PostCSS Prefix All Rules

PostCSS plugin to prepend a selector in front of all your rules.

/* Input example */
.foo { }

.bar,
.baz { }
/* Output example */
.pre .foo { }

.pre .bar,
.pre .baz { }

Usage

Check you project for existed PostCSS config: postcss.config.js in the project root, "postcss" section in package.json or postcss in bundle config.

If you already use PostCSS, add the plugin to plugins list:

module.exports = {
  plugins: [
+   require('postcss-prefix-all-rules')({ prefix: '.pre' }),
    require('autoprefixer')
  ]
}

If you do not use PostCSS, add it according to official docs and set this plugin in settings.

Package Sidebar

Install

npm i @tillschander/postcss-prefix-all-rules

Weekly Downloads

0

Version

1.0.2

License

MIT

Unpacked Size

3.95 kB

Total Files

5

Last publish

Collaborators

  • tillschander