Skip to content

Instantly share code, notes, and snippets.

@ilearnjavascript
Last active April 6, 2019 09:10
Show Gist options
  • Save ilearnjavascript/bea23535d7f225a3123d7155248f98f2 to your computer and use it in GitHub Desktop.
Save ilearnjavascript/bea23535d7f225a3123d7155248f98f2 to your computer and use it in GitHub Desktop.
gulp - gulpfile - 6.js
// add to plugins
const del = require('del');
// remove temp folder
gulp.task('clean', function() {
return del(['temp']);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment