Package Exports
- gulp-sassport
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 (gulp-sassport) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-sassport
Gulp plugin for the Sassport tool.
Installation
npm install gulp-sassport --save-dev
Usage
var sassport = require('gulp-sassport');
var fooModule = require('path/to/some-sassport-module.js');
gulp.task('styles', function() {
gulp.src('./path/to/stylesheet.scss')
.pipe(sassport([ fooModule ], {
outputStyle: 'compressed'
}))
.pipe(gulp.dest('./path/to/css'));
});API
Coming soon!