Last active
January 2, 2020 23:24
-
-
Save Farenheith/fdcef4104029ed893dcf86efec2c55d1 to your computer and use it in GitHub Desktop.
gulpfile-clear.js example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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