
Product
Introducing Socket Fix for Safe, Automated Dependency Upgrades
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
postcss-unique-selectors
Advanced tools
The postcss-unique-selectors npm package is a PostCSS plugin that removes duplicate CSS selectors within a rule. This helps in optimizing the CSS by ensuring that each selector is unique, which can reduce the size of the CSS file and improve maintainability.
Remove duplicate selectors
This feature removes duplicate selectors within a CSS rule. In the provided code sample, the duplicate 'a' selector is removed, resulting in 'a, b { color: red; }'.
const postcss = require('postcss');
const uniqueSelectors = require('postcss-unique-selectors');
const css = 'a, a, b { color: red; }';
postcss([uniqueSelectors])
.process(css)
.then(result => {
console.log(result.css); // Output: 'a, b { color: red; }'
});
cssnano is a modular minifier based on the PostCSS ecosystem. It includes a variety of optimizations, including the removal of duplicate selectors, making it a more comprehensive tool compared to postcss-unique-selectors.
postcss-discard-duplicates is another PostCSS plugin that removes duplicate rules and declarations. While it focuses on removing duplicate rules and declarations, it can be used in conjunction with postcss-unique-selectors for more thorough CSS optimization.
Ensure CSS selectors are unique.
With npm do:
npm install postcss-unique-selectors --save
Selectors are sorted naturally, and deduplicated:
h1,h3,h2,h1 {
color: red
}
h1,h2,h3 {
color: red
}
See the PostCSS documentation for examples for your environment.
See CONTRIBUTORS.md.
MIT © Ben Briggs
FAQs
Ensure CSS selectors are unique.
The npm package postcss-unique-selectors receives a total of 10,702,329 weekly downloads. As such, postcss-unique-selectors popularity was classified as popular.
We found that postcss-unique-selectors 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.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.
Product
We’re excited to announce a powerful new capability in Socket: historical data and enhanced analytics.