
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
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 14 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.