JSPM

seed-this

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

Selector-based function pack for Seed

Package Exports

  • seed-this

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 (seed-this) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

seed-this npm version

Selector-based function pack for Seed

This pack is an experimentation. Keep that in mind before use!

Install

npm install seed-this --save-dev

Basic Usage

SCSS

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-this');

gulp.task('sass', function () {
  return gulp.src('./sass/**/*.scss')
    .pipe(sass({
      includePaths: pack
    }))
    .pipe(gulp.dest('./css'));
});

Once that is setup, simply @import seed-this as needed in your .scss file:

// Packs
@import "pack/seed-this/_index";

Options

The following variables can be found in _config.scss