
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
broccoli-multi-postcss
Advanced tools
Broccoli plugin to transform one or more input files using PostCSS to one or more output files.
Broccoli plugin to transform one or more input files using PostCSS to one or more output files.
It's like broccoli-postcss, but allows you consume more
than once input file at once. It also allows you to generate additional
secondary output files.
yarn add broccoli-multi-postcss
import BroccoliMultiPostCSS from 'broccoli-multi-postcss';
import { plugin } from 'postcss';
const myPlugin = plugin('selector-metadata', options => {
return (root, result) => {
const selectors: string[] = [];
root.walkRules(rule => {
selectors.push(rule.selector);
});
const metadata = { selectors, fileName: result.opts.to };
result.messages.push({
type: BroccoliMultiPostCSS.MessageType.WriteFile,
plugin: 'selector-metadata',
path: `${result.opts.to}.meta.json`,
content: JSON.stringify(metadata)
});
};
});
const tree = new BroccoliMultiPostCSS(['./styles'], { plugins: [myPlugin] });
FAQs
Broccoli plugin to transform one or more input files using PostCSS to one or more output files.
The npm package broccoli-multi-postcss receives a total of 1 weekly downloads. As such, broccoli-multi-postcss popularity was classified as not popular.
We found that broccoli-multi-postcss demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.