Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
postcss-merge-rules
Advanced tools
The postcss-merge-rules npm package is designed to optimize CSS by merging CSS rules with identical selectors or declarations. This can lead to smaller CSS files and potentially faster load times for web pages.
Merging based on identical selectors
This feature combines rules with identical selectors into a single rule. In the code sample, two rules for the 'a' selector are merged into one.
const postcss = require('postcss');
const mergeRules = require('postcss-merge-rules');
const css = `a { color: blue; }
a { font-size: 14px; }`;
postcss([mergeRules()])
.process(css, { from: undefined })
.then(result => console.log(result.css));
Merging based on identical declarations
This feature merges rules that have identical declarations but different selectors, creating a grouped selector. The code sample demonstrates merging two rules that apply the same color declaration to different selectors.
const postcss = require('postcss');
const mergeRules = require('postcss-merge-rules');
const css = `a { color: blue; }
b { color: blue; }`;
postcss([mergeRules()])
.process(css, { from: undefined })
.then(result => console.log(result.css));
cssnano is a modular CSS minifier that includes functionalities similar to postcss-merge-rules as part of its optimizations. It can merge rules as well as perform other optimizations like reducing whitespace and minifying font weights.
clean-css is another CSS minifier that offers functionalities to merge CSS rules among other optimizations. It focuses on efficiency and performance, providing an alternative to postcss-merge-rules with a broader scope of CSS optimization techniques.
Merge CSS rules with PostCSS.
With npm do:
npm install postcss-merge-rules --save
This module will attempt to merge adjacent CSS rules:
a {
color: blue;
font-weight: bold
}
p {
color: blue;
font-weight: bold
}
a,p {
color: blue;
font-weight: bold
}
a {
color: blue
}
a {
font-weight: bold
}
a {
color: blue;
font-weight: bold
}
a {
font-weight: bold
}
p {
color: blue;
font-weight: bold
}
a,p {
font-weight: bold
}
p {
color: blue
}
See the PostCSS documentation for examples for your environment.
See CONTRIBUTORS.md.
MIT © Ben Briggs
FAQs
Merge CSS rules with PostCSS.
The npm package postcss-merge-rules receives a total of 9,928,168 weekly downloads. As such, postcss-merge-rules popularity was classified as popular.
We found that postcss-merge-rules demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 open source maintainers 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.