Package Exports
- @seedcss/seed-family
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@seedcss/seed-family) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
seed-family
Family related mixin pack for Seed
Install
npm install @seedcss/seed-family --saveDocumentation
Check out our documentation of this pack.
Basic Usage
SCSS
This seed pack needs to be imported into your sass pipeline. Below is an example using Gulp:
const gulp = require("gulp");
const sass = require("gulp-sass");
const pathfinder = require("sass-pathfinder");
const pack = require("@seedcss/seed-family");
gulp.task("sass", function() {
return gulp
.src("./sass/**/*.scss")
.pipe(
sass({
includePaths: pathfinder(
// Other includePaths...
pack
)
})
)
.pipe(gulp.dest("./css"));
});Once that is setup, simply @import seed-family as needed in your .scss file:
// Packs
@import "pack/seed-family/_index";