Reputation: 154504
Is it possible to run gulp tasks in serial from the command line?
For example, so that:
$ gulp clean build
Will first run gulp clean
to completion, then gulp build
?
I emphatically do not want to make clean
a dependency of build
because I don't want to clean before every build.
Upvotes: 2
Views: 359