You return
to indicate that the task is async. gulp.src()
returns a stream, so it’s async.
Without it the task system wouldn’t know when it finished. Read the docs.
You return
to indicate that the task is async. gulp.src()
returns a stream, so it’s async.
Without it the task system wouldn’t know when it finished. Read the docs.