
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
jss-plugin-sort-css-media-queries
Advanced tools
JSS plugin for sort CSS media queries
npm i jss-plugin-sort-css-media-queries
desktopFirst
type: boolean
default: false
By default, plugin is using mobileFirst methodology for sorting CSS Media Queries.
By this option you can change behavior to the desktopFirst methodology.
combineMediaQueries
type: boolean
default: false
You can combine similar CSS Media Queries rules into the one block.
import jss from 'jss';
jss.use(sortCssMediaQueries());
const sheet = jss.createStyleSheet({
button: {
width: 100,
'@media (min-width: 600px)': {
width: 150
}
},
span: {
color: 'blue',
'@media (min-width: 600px)': {
width: 'yellow'
}
}
});
Result without combineMediaQueries
button {
width: 100px;
}
span {
color: blue;
}
@media (min-width: 600px) {
button {
width: 150px;
}
}
@media (min-width: 600px) {
span {
color: yellow;
}
}
Result with combineMediaQueries: true
button {
width: 100px;
}
span {
color: blue;
}
@media (min-width: 600px) {
button {
width: 150px;
}
span {
color: yellow;
}
}
Unfortunately, I have not found a more correct method of influencing the sorting of the list of rules than how to modify the
RuleList::toString()
method.
That is a wrong way from the architecture OOP principles, but it is the most non-breaking way for the whole JSS workflow.
After calling.toString()
method JSS work is done and in this point I can make own job with sorting, combining and returning CSS output.
Please fill free to create issues or send PR
FAQs
JSS plugin for sort CSS media queries
The npm package jss-plugin-sort-css-media-queries receives a total of 922 weekly downloads. As such, jss-plugin-sort-css-media-queries popularity was classified as not popular.
We found that jss-plugin-sort-css-media-queries 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.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.