Broccoli plugin to compile CSS through PostCSS plugins. Current stable version is 6.1.0 (PostCSS 8), compatible with Node >=10. Release cadence is low; last update was 2020. Key differentiators: integrates PostCSS into the Broccoli build pipeline, supports whitelist/blacklist filtering via globs, source map configuration, and two plugin definition styles (object and function forms). Alternative to using PostCSS CLI or other build tool integrations.
npm install broccoli-postcssNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Configures broccoli-postcss with one plugin (postcss-cssnext), sets source maps off, includes styles/*.css, excludes vendor/**/*.
Update all postcss plugins to versions supporting PostCSS 8, or stay on v5 with PostCSS 7.
Upgrade Node.js to version 10 or higher.
Remove 'browsers' from options and set up browserslist in your project.
Use object form: { module: require('plugin'), options: { ... } }Use require() instead of import.
npm install --save-dev postcss
Ensure plugins are compatible with PostCSS 8 and use object form: { module: require('plugin'), options: {} }Use import or ensure you are using CommonJS (type: 'commonjs' in package.json).