Package Exports
- gulp-clip-empty-files
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-clip-empty-files) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-clip-empty-files 
Remove empty files from stream. This prevent errors on some other plugins like gulp-sass and can be usefull removing placeholders.
Install
$ npm install --save-dev gulp-clip-empty-filesUsage
var gulp = require('gulp');
var clip = require('gulp-clip-empty-files');
gulp.task('default', function () {
return gulp.src('src/*.scss')
.pipe(clip())
.pipe(gulp.dest('dist'));
});Options
No options available.