npm install del --save-dev
Declare Dependencies and Create Tasks
var del = require('del');
gulp.task('clean:build', function() {
return del.sync('build');
});
gulp.task('clean:build', function() {
//return del.sync('build');
return del([
'build/temp/',
// instructs to clean temp folder
'!build/package.json'
// negate to instruct not to clean package.json file ]);
});