
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
postcss-default-unit
Advanced tools
PostCSS plugin that adds a default unit to numeric css properties
PostCSS plugin that adds a default unit to numeric css properties.
.foo {
width: 200;
margin: 0 auto 20;
z-index: 1;
}
.foo {
width: 200px;
margin: 0 auto 20px;
z-index: 1;
}
With npm do:
npm install postcss-default-unit --save
By default px is used.
postcss([ require('postcss-default-unit') ])
You can specify the desired unit.
postcss([ require('postcss-default-unit')({unit: '%'}) ])
This plugin must be set after the plugins that can modify the values (e.g. postcss-simple-vars). See PostCSS docs for examples for your environment.
Now postcss-default-unit ignores expressions in parentheses. It won't mess up your rgba or calc, but it won't also add a unit to your gradient.
FAQs
PostCSS plugin that adds a default unit to numeric css properties
We found that postcss-default-unit 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.