# postcss-brunch **Repository Path**: mirrors_lydell/postcss-brunch ## Basic Information - **Project Name**: postcss-brunch - **Description**: Adds PostCSS support to brunch - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2026-04-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README postcss-brunch ============== Adds [PostCSS](https://github.com/ai/postcss) support to [brunch](https://github.com/brunch/brunch) ##Install `npm install --save postcss-brunch`. ##Add plugins Add all plugins you want to use with PostCSS in your `package.json` file too. For example, here we add [Autoprefixer](https://github.com/ai/autoprefixer) and [CSS Wring](https://github.com/hail2u/node-csswring). { "postcss-brunch": "^0.4.x", "autoprefixer": "^5.1.0", "csswring": "^3.0.0" } Or, use `npm install --save-dev ` to get latest version in package.json. Then, configure `postcss-brunch` in the `plugins` section of your `brunch-config` file, like so: ```javascript plugins: postcss: processors: [ require('autoprefixer')(['last 8 versions']), require('csswring') ] ``` You can add as many processors as you want. CSS will be parsed only once. See [PostCSS](https://github.com/ai/postcss) and each plugins docs. ## License MIT