gulp-remove-files

Remove files from stream.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
gulp-remove-files
010.0.39 years ago9 years agoMinified + gzip package size for gulp-remove-files in KB

Readme

gulp-remove-files Build Status

Remove all files from stream.

(this is removing files from stream and disk so it might not go very well with gulp plugin requirements, so it might get banned :) but I needed this functionality on one of the projects)

Install

npm install --save-dev gulp-remove-files

Example

var gulp = require('gulp');
var removeFiles = require('gulp-remove-files');

gulp.task('clearHtml', function () {
  gulp.src('./public/*.html')
    .pipe(removeFiles());
});

Options

None

License

MIT © Daniel Husar