0.1.4 • Published 6 months ago

postcss-plugin-matcher v0.1.4

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

postcss-plugin-matcher

PostCSS plugin for limit plugins matching.

npm github node

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']
+    }
   }
 };