You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/CLI.md
+14-1Lines changed: 14 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,20 @@ Refer to this [StackOverflow](http://stackoverflow.com/questions/23023650/is-it-
22
22
23
23
### Tasks
24
24
25
-
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.
25
+
Tasks can be executed by running `gulp <task> <task>...`.
26
+
27
+
If more than one task is listed, Gulp will execute all of them
28
+
concurrently, that is, as if they had all been listed as dependencies of
29
+
a single task.
30
+
31
+
Gulp does not serialize tasks listed on the command line. From using
32
+
other comparable tools users may expect to execute something like
33
+
`gulp clean build`, with tasks named `clean` and `build`. This will not
34
+
produce the intended result, as the two tasks will be executed
35
+
concurrently.
36
+
37
+
Just running `gulp` will execute the task `default`. If there is no
0 commit comments