JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 911
  • Score
    100M100P100Q96131F
  • License MIT

Family related mixin pack for Seed

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

npm version

Family related mixin pack for Seed

Install

npm install @seedcss/seed-family --save

Documentation

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";