Skip to content

Instantly share code, notes, and snippets.

@Farenheith
Last active January 2, 2020 23:24
Show Gist options
  • Save Farenheith/fdcef4104029ed893dcf86efec2c55d1 to your computer and use it in GitHub Desktop.
Save Farenheith/fdcef4104029ed893dcf86efec2c55d1 to your computer and use it in GitHub Desktop.
gulpfile-clear.js example
var gulp = require('gulp');
var del = require('del');
gulp.task('default', function () {
return del([
'build/'
]);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment