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: README.md
+23-10Lines changed: 23 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -103,11 +103,14 @@ Configuration from the home directory (`~`) and current working directory (`cwd`
103
103
104
104
Supported configurations properties:
105
105
106
-
| Property | Description |
107
-
|----------------|-------------|
108
-
| description | Top-level description of the project/gulpfile (Replaces "Tasks for ~/path/of/gulpfile.js") |
109
-
| flags.gulpfile | Set a default gulpfile |
110
-
| flags.silent | Silence logging by default |
106
+
| Property | Description |
107
+
|--------------------|-------------|
108
+
| description | Top-level description of the project/gulpfile (Replaces "Tasks for ~/path/of/gulpfile.js") |
109
+
| flags.continue | Continue execution of tasks upon failure by default. |
110
+
| flags.compactTasks | Reduce the output of task dependency tree by default. |
111
+
| flags.tasksDepth | Set default depth of task dependency tree. |
112
+
| flags.gulpfile | Set a default gulpfile |
113
+
| flags.silent | Silence logging by default |
111
114
112
115
## Flags
113
116
@@ -159,11 +162,6 @@ __Some flags only work with gulp 4 and will be ignored when invoked against gulp
159
162
<td>-T</td>
160
163
<td>Print the task dependency tree for the loaded gulpfile.</td>
161
164
</tr>
162
-
<tr>
163
-
<td>--depth [number]</td>
164
-
<td></td>
165
-
<td>Specify the depth of the task dependency tree to print.</td>
166
-
</tr>
167
165
<tr>
168
166
<td>--tasks-simple</td>
169
167
<td></td>
@@ -174,6 +172,21 @@ __Some flags only work with gulp 4 and will be ignored when invoked against gulp
174
172
<td></td>
175
173
<td>Print the task dependency tree, in JSON format, for the loaded gulpfile. The [path] argument is optional, and if given writes the JSON to the path.</td>
176
174
</tr>
175
+
<tr>
176
+
<td>--tasks-depth [number]</td>
177
+
<td></td>
178
+
<td>Specify the depth of the task dependency tree to print. This flag can be used with --tasks or --tasks-json. (This flag was named --depth before but is deprecated.)</td>
179
+
</tr>
180
+
<tr>
181
+
<td>--compact-tasks</td>
182
+
<td></td>
183
+
<td>Reduce the output of task dependency tree by printing only top tasks and their child tasks. This flag can be used with --tasks or --tasks-json.</td>
184
+
</tr>
185
+
<tr>
186
+
<td>--sort-tasks</td>
187
+
<td></td>
188
+
<td>Will sort top tasks of task dependency tree. This flag can be used with --tasks.</td>
Copy file name to clipboardExpand all lines: docs/CLI.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,6 +59,15 @@ gulp has very few flags to know about. All other flags are for tasks to use if n
59
59
**--tasks-json**[path]
60
60
Print the task dependency tree, in JSON format, for the loaded gulpfile. The [path] argument is optional, and if given writes the JSON to the path.
61
61
62
+
**--tasks-depth**[number]
63
+
Specify the depth of the task dependency tree to print. This flag can be used with --tasks or --tasks-json. (This flag was named --depth before but is deprecated.)
64
+
65
+
**--compact-tasks**
66
+
Reduce the output of task dependency tree by printing only top tasks and their child tasks. This flag can be used with --tasks or --tasks-json.
67
+
68
+
**--sort-tasks**
69
+
Will sort top tasks of task dependency tree. This flag can be used with --tasks.
70
+
62
71
**--color**
63
72
Will force gulp and gulp plugins to display colors, even when no color support is detected.
0 commit comments