Skip to content

Commit

Permalink
Docs: Fix error in ES2015 usage example (fixes #2099) (#2100)
Browse files Browse the repository at this point in the history
  • Loading branch information
demurgos authored and phated committed Jan 18, 2018
1 parent a010db6 commit a4e8d48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -197,8 +197,8 @@ export { watchFiles as watch };
* You can still use `gulp.task`
* for example to set task names that would otherwise be invalid
*/
const clean = gulp.series(clean, gulp.parallel(styles, scripts));
gulp.task('clean', clean);
const build = gulp.series(clean, gulp.parallel(styles, scripts));
gulp.task('build', build);

/*
* Export a default task
Expand Down

0 comments on commit a4e8d48

Please sign in to comment.