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-2Lines changed: 14 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,22 @@
1
1
### Usage
2
2
3
-
gulp [flags]tasks
3
+
`gulp [flags] <task> <task>...`
4
4
5
5
### Tasks
6
6
7
-
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.
7
+
The task(s) listed will be executed.
8
+
If more than one task is listed, Gulp will execute all of them
9
+
concurrently, that is, as if they had all been listed as dependencies of
10
+
a single task.
11
+
12
+
Gulp does not serialize tasks listed on the command line. From using
13
+
other comparable tools users may expect to execute something like
14
+
`gulp clean build`, with tasks named `clean` and `build`. This will not
15
+
produce the intended result, as the two tasks will be executed
16
+
concurrently.
17
+
18
+
Just running `gulp` will execute the task `default`. If there is no
0 commit comments