Package Exports
- gulp-jsss
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-jsss) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-jsss
Compile jsss to CSS
Usage
var gulp = require('gulp');
var concat = require('gulp-concat');
var jsss = require('gulp-jsss');
gulp.task('jsss', function() {
return gulp.src('jsss/**/*.js')
.pipe(jsss())
.pipe(concat('style.css'))
.pipe(gulp.dest('dist/css'));
});