JSPM

seed-this

0.0.5
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1203
  • Score
    100M100P100Q109133F
  • 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 Build Status npm version

Selector-based function pack for Seed

Install

npm install seed-this --save-dev

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:

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