README
postcss-brunch-again
Adds PostCSS support to brunch again.
Install
npm install --save-dev postcss-brunch-again
Add plugins
npm install --save-dev postcss-import postcss-cssnext
Configure
brunch-config.js
:
plugins: {
postcss: {
processors: [
require('postcss-import')({ path: 'dir/with/css' }),
require('postcss-cssnext')()
]
}
}
Thanks
To the original implementation.
Development
npm install
npm run test
License
MIT