
Research
/Security News
Toptal’s GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
gulp-extract-media-queries
Advanced tools
Plugin extracts css rules inside of media queries and saves it to separated files.
Plugin extracts css rules inside of media queries and saves it to separated files.
var gulp = require("gulp");
var g = require("gulp-load-plugins")();
gulp.task("design.build", function() {
gulp.src("src/design/style.css")
.pipe(g.extractMediaQueries())
.pipe(gulp.dest("build"));
});
Task design.build
for below style.css
file:
* {
box-sizing: border-box;
}
@media (min-width: 640px) {
.container {
margin: 0 auto;
}
}
Produces following files:
style.css | min-width-640px.css |
---|---|
* { box-sizing: border-box; } | .container { margin: 0 auto; } |
And now you can include it in your html in such way:
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" type="text/css" href="min-width-640px.css" media="(min-width: 640px)" />
When a media query is true, the corresponding style sheet or style rules are applied, following the normal cascading rules. Style sheets with media queries attached to their tags will still download even if their media queries would return false (they will not apply, however).
Unless you use the not
or only
operators,
the media type is optional and the all type will be implied.
FAQs
Plugin extracts css rules inside of media queries and saves it to separated files.
The npm package gulp-extract-media-queries receives a total of 37 weekly downloads. As such, gulp-extract-media-queries popularity was classified as not popular.
We found that gulp-extract-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
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.