postcss-plugin-matcher
v0.1.4
Published
PostCSS plugin for limit plugins matching
Downloads
46
Maintainers
Readme
postcss-plugin-matcher
PostCSS plugin for limit plugins matching.
For safer and faster.
Installation
npm install postcss-plugin-matcher --save-dev
Usage
// example: postcss.config.cjs
module.exports = {
plugins: {
- 'tailwindcss': {},
+ 'postcss-plugin-matcher': {
+ plugins: ['tailwindcss'],
+ include: ['src/**'],
+ exclude: ['app.css']
+ }
}
};