We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88b6c33 commit cacc173Copy full SHA for cacc173
README.md
@@ -55,9 +55,10 @@ gulp.task('default', gulp.series('build'));
55
/* Define our tasks using plain functions */
56
57
// Not all tasks need to use streams
58
-// A gulpfile is just another node program and you can use all packages available on npm
+// But it must return either a Promise or Stream or take a Callback and call it
59
function clean() {
60
// You can use multiple globbing patterns as you would with `gulp.src`
61
+ // If you are using del 2.0 or above, return its promise
62
return del(['build']);
63
}
64
0 commit comments