{"library":"rollup-plugin-postcss-export","title":"rollup-plugin-postcss-export","description":"A Rollup plugin that integrates PostCSS processing and bundles processed CSS into a single external file. Version 1.0.3 is the latest stable release. Features include custom PostCSS plugins, source maps, CSS modules support via postcss-modules, and configurable file extensions. Key differentiators: it exports all CSS to one external file rather than inlining or emitting separate chunks, and it supports CSS modules with a getExport callback. The plugin is lightweight and focused, but has low maintenance activity.","language":"javascript","status":"active","last_verified":"Mon Apr 27","install":{"commands":["npm install rollup-plugin-postcss-export"],"cli":null},"imports":["import postcss from 'rollup-plugin-postcss-export'","import postcss from 'rollup-plugin-postcss-export'","import type { PostCSSPluginOptions } from 'rollup-plugin-postcss-export'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import postcss from 'rollup-plugin-postcss-export';\n\nexport default {\n  input: 'src/main.js',\n  output: { dir: 'dist', format: 'es' },\n  plugins: [\n    postcss({\n      plugins: [require('autoprefixer')],\n      sourceMap: true,\n      export: './dist/bundle.css',\n    }),\n  ],\n};","lang":"javascript","description":"Minimal Rollup config using rollup-plugin-postcss-export to process CSS and export a single external CSS file with autoprefixer and source maps.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}