Skip to content

Commit a4e8d48

Browse files
demurgosphated
authored andcommitted
Docs: Fix error in ES2015 usage example (fixes #2099) (#2100)
1 parent a010db6 commit a4e8d48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ export { watchFiles as watch };
197197
* You can still use `gulp.task`
198198
* for example to set task names that would otherwise be invalid
199199
*/
200-
const clean = gulp.series(clean, gulp.parallel(styles, scripts));
201-
gulp.task('clean', clean);
200+
const build = gulp.series(clean, gulp.parallel(styles, scripts));
201+
gulp.task('build', build);
202202

203203
/*
204204
* Export a default task

0 commit comments

Comments
 (0)