Skip to content

Instantly share code, notes, and snippets.

@ro31337
Created March 6, 2016 01:13
Show Gist options
  • Select an option

  • Save ro31337/89d80f166862b1fd2075 to your computer and use it in GitHub Desktop.

Select an option

Save ro31337/89d80f166862b1fd2075 to your computer and use it in GitHub Desktop.
var clean = require('gulp-rimraf');
// ...
// Clean dist folder
gulp.task('clean', function() {
return gulp.src('./dist', {
read: false
}).pipe(clean({
force: true
}));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment