Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
postcss-discard-duplicates
Advanced tools
Discard duplicate rules in your CSS files with PostCSS.
The postcss-discard-duplicates package is a PostCSS plugin designed to remove duplicate rules, declarations, and @rules from your CSS. This helps in reducing the file size and cleaning up the CSS for better performance and readability.
Discard duplicate rules
This feature removes duplicate CSS rules. If two or more rules are identical, only one is kept.
"const postcss = require('postcss');
const discardDuplicates = require('postcss-discard-duplicates');
postcss([ discardDuplicates() ])
.process('a { color: black; } a { color: black; }', { from: undefined })
.then(result => {
console.log(result.css);
// Output: 'a { color: black; }'
});"
Discard duplicate declarations within a rule
This feature removes duplicate declarations within a single rule, keeping only one instance of the declaration.
"const postcss = require('postcss');
const discardDuplicates = require('postcss-discard-duplicates');
postcss([ discardDuplicates() ])
.process('a { color: black; color: black; }', { from: undefined })
.then(result => {
console.log(result.css);
// Output: 'a { color: black; }'
});"
Discard duplicate @rules
This feature removes duplicate @rules from the CSS, ensuring that only one instance of each @rule is present.
"const postcss = require('postcss');
const discardDuplicates = require('postcss-discard-duplicates');
postcss([ discardDuplicates() ])
.process('@font-face { font-family: 'MyFont'; src: url('myfont.woff2'); }
@font-face { font-family: 'MyFont'; src: url('myfont.woff2'); }', { from: undefined })
.then(result => {
console.log(result.css);
// Output: '@font-face { font-family: 'MyFont'; src: url('myfont.woff2'); }'
});"
cssnano is a modular CSS minifier that includes functionalities similar to postcss-discard-duplicates as part of its optimization suite. It goes beyond just discarding duplicates by also compressing colors, reordering rules, and more for maximum efficiency.
postcss-merge-rules combines selectors with identical rules into one, which can indirectly remove duplicates by merging them. It's more focused on consolidation rather than direct removal of duplicates.
clean-css is a fast and efficient CSS optimizer for Node.js and the web. It provides functionalities similar to postcss-discard-duplicates by removing duplicates, but it also offers a wide range of other optimizations like reordering rules, merging identical rules, and minifying the CSS.
Discard duplicate rules in your CSS files with PostCSS.
With npm do:
npm install postcss-discard-duplicates --save
This module will remove all duplicate rules from your stylesheets. It works on at rules, normal rules and declarations. Note that this module does not have any responsibility for normalising declarations, selectors or whitespace, so that it considers these two rules to be different:
h1, h2 {
color: blue;
}
h2, h1 {
color: blue;
}
It has to assume that your rules have already been transformed by another processor, otherwise it would be responsible for too many things.
h1 {
margin: 0 auto;
margin: 0 auto
}
h1 {
margin: 0 auto
}
h1 {
margin: 0 auto
}
See the PostCSS documentation for examples for your environment.
See CONTRIBUTORS.md.
MIT © Ben Briggs
FAQs
Discard duplicate rules in your CSS files with PostCSS.
The npm package postcss-discard-duplicates receives a total of 9,473,697 weekly downloads. As such, postcss-discard-duplicates popularity was classified as popular.
We found that postcss-discard-duplicates 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.