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

Selector-based function pack for Seed
Install
npm install seed-this --save-devDocumentation
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:
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";