Deprecated in favor of https://github.com/gulpjs/gulp/blob/master/docs/recipes/delete-files-folder.md
gulp-clean
Removes files and folders.
Install
Install with npm.
npm install --save-dev gulp-clean
Examples
var gulp = ;var clean = ; gulp;
Option read:false prevents gulp from reading the contents of the file and makes this task a lot faster. If you need the file and its contents after cleaning in the same stream, do not set the read option to false.
var gulp = ;var clean = ; gulp;
For safety files and folders outside the current working directory can be removed only with option force set to true.
Clean as a dependency:
var gulp = ;var clean = ; gulp; gulp; gulp;
Make sure to return the stream so that gulp knows the clean task is asynchronous and waits for it to terminate before starting the dependent one.
License
MIT @ Peter Vilja