Don't run generate twice in gulp watch task
Created by: mrnugget
The watchGenerate
task first runs generate
and then, in parallel,
the watch*
tasks.
But watch
also first runs generate
and then watchGenerate
, which
also runs generate
again.
That means we can simplify the watch
task by using the generate
of
watchGenerate
.