Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
jss-default-unit
Advanced tools
JSS plugin that adds default custom unit to numeric values where needed
Provide plain numeric values in your JSS style definitions, and the plugin will insert the apposite units. Defaults to px
for sizes, ms
for durations, and %
for transform origins, and these can be customized easily (see Usage Example).
Make sure you read how to use plugins in general.
![Gitter](https://badges.gitter.im/Join Chat.svg)
import jss from 'jss'
import defaultUnit from 'jss-default-unit'
// Optionally customize default units.
const options = {
'line-height': 'rem',
'font-size': 'rem'
}
jss.use(defaultUnit(options))
// Define styles.
const styles = {
container: {
'line-height': 3,
'font-size': 1.7,
'height': 200,
'z-index': 1
}
}
let sheet = jss.createStyleSheet(styles)
console.log(sheet.toString())
Generates the following stylesheet:
.container-0-0 {
line-height: 3rem;
font-size: 1.7rem;
height: 200px;
z-index: 1;
}
File a bug against cssinjs/jss prefixed with [jss-default-unit].
npm i
npm run test
MIT
FAQs
JSS plugin that adds default custom unit to numeric values where needed
The npm package jss-default-unit receives a total of 67,528 weekly downloads. As such, jss-default-unit popularity was classified as popular.
We found that jss-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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.