@seedcss/seed-publish
v1.0.1
Published
Mixins that manage rendered CSS from modular importing
Downloads
261
Readme
seed-publish
Mixins that manage rendered CSS from modular importing
Install
npm install @seedcss/seed-publish --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-publish");
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-publish as needed in your .scss
file:
// Packs
@import "pack/seed-publish/_index";
Options
The following variables can be found in _config.scss
// publish :: Config
// Global namespace
@if not variable-exists(__seed-publish-list) {
$__seed-publish-list: (
seed-publish: true
) !global;
}