postcss-class-rename

postcss-class-rename JS library on GitHub postcss-class-rename JS library on npm Download postcss-class-rename JS library

PostCSS plugin simply rename class without hassle

Version 1.0.1 License MIT Vulnerabilities 0
postcss-class-rename has no homepage
postcss-class-rename JS library on GitHub
postcss-class-rename JS library on npm
Download postcss-class-rename JS library
Keywords
postcsspostcss-pluginscssrename

postcss-class-rename

PostCSS plugin to replace class name by giving key-value mapping in options.


Installation

npm install postcss-class-rename --save-dev

Usage

rollup

postcss({
    plugins: [
      require('autoprefixer'),
      require('postcss-class-rename')({
        // replace 'button-' in class name to 'btn-'
        button-: 'btn-',
        // All options are treated as replacement mapping
        ...
      })
    ]
  }),

postcss.config.js

const rename = require('postcss-class-rename');

module.exports = ({ env }) => {
  plugins: [
    rename({
      // All options are treated as replacement mapping
      button-: 'btn-',
      ...
    })
  ]
}