Skip to content

Commit

Permalink
Docs: Clarify CLI semantics when listing more than one task (#1916)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Cordes authored and contra committed Feb 23, 2017
1 parent 90340b9 commit 62323fc
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion docs/CLI.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,20 @@ Refer to this [StackOverflow](http:https://stackoverflow.com/questions/23023650/is-it-

### Tasks

Tasks can be executed by running `gulp <task> <othertask>`. Just running `gulp` will execute the task you registered called `default`. If there is no `default` task gulp will error.
Tasks can be executed by running `gulp <task> <task>...`.

If more than one task is listed, Gulp will execute all of them
concurrently, that is, as if they had all been listed as dependencies of
a single task.

Gulp does not serialize tasks listed on the command line. From using
other comparable tools users may expect to execute something like
`gulp clean build`, with tasks named `clean` and `build`. This will not
produce the intended result, as the two tasks will be executed
concurrently.

Just running `gulp` will execute the task `default`. If there is no
`default` task, gulp will error.

### Compilers

Expand Down

0 comments on commit 62323fc

Please sign in to comment.