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.
hipster-css
Advanced tools
A CSS Processor with a CLI and Gulp Plugin built on PostCSS.
PostCSS is fast, very fast, but it can be a pain to intergrate into your build stream. Hipster fixs this with a CLI and a Glup Plugin, leveraging the speed of PostCSS and removing the intergration headaches.
npm install hipster-css
$header: #333; /* Declaring a variable */
h1 {
color: $header; /* Using a variable */
}
@mixin border-radius($radius) {
-webkit-border-radius: $radius;
-moz-border-radius: $radius;
-ms-border-radius: $radius;
border-radius: $radius;
}
.box { @include border-radius(10px); }
header {
h1 {
font-size: 36px;
}
}
@import "lib/normalize.css";
@import "media-queries/menu.css" (min-width: 480px);;
Reducing calc() references whenever it's possible with the postcss-calc plugin.
Note: When multiple units are mixed together in the same expression, the calc() statement is left as is, to fallback to the w3c calc() feature.
As Hipster is built on PostCSS, it is really easy to add new plugin to allow for new syntax and functionality while retaining the easy of use of the CLI.
npm install <package> --save
var <plugin> = require('<plugin>');
.use('<plugin>')
FAQs
A CSS Processor built on postCSS.
We found that hipster-css 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.