David Wolever
David Wolever

Reputation: 154504

Run gulp tasks in serial from command line?

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

Answers (1)

migonzalvar
migonzalvar

Reputation: 1685

And what about?

$ gulp clean && gulp build

Upvotes: 1

Related Questions