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.
Props mixin pack for Seed!
npm install seed-props --save
Check out our documentation of this pack.
This seed pack needs to be imported into your sass pipeline. Below is an example using Gulp:
var gulp = require('gulp');
var sass = require('gulp-sass');
var pack = require('seed-props');
gulp.task('sass', function () {
return gulp.src('./sass/**/*.scss')
.pipe(sass({
includePaths: pack
}))
.pipe(gulp.dest('./css'));
});
Once that is setup, simply @import
seed-props as needed in your .scss
file:
// Packs
@import "pack/seed-props/_index";
The prop-map
mixin allows you to loop through a map and use arguments as variables in your styles (@content
).
You have to use the prop
function for your @content
to utilize the argument defined in your prop-map
.
// Input (scss)
$grid-columns: (
1: 10%,
2: 20%
);
.col- {
@include prop-map($grid-columns, (width)) {
width: prop(width);
}
}
// Output (css)
.col-1 {
width: 10%; }
.col-2 {
width: 20%; }
Yo dawg. I heard you like using maps within maps. prop-map
will be able to handle that!
// Input (scss)
$btn-states: (
success: (
background: green,
border-color: green),
danger: (
background: red,
border-color: red)
);
.btn {
@include prop-map($btn-states, (background, border-color)) {
background: prop(background);
border-color: prop(border-color);
}
}
// Output (css)
.btn-success {
background: green;
border-color: green; }
.btn-danger {
background: red;
border-color: red; }
P.S. For maps within maps, the arguments are based on name (not the argument order).
FAQs
Props mixin pack for Seed
We found that seed-props 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.