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
If no arguments are given the `default` task will run instead (as gulp does).
34
34
35
-
-_What about the CLI?_
35
+
__What about the CLI?__
36
36
37
37
Add an alias to your `.bashrc`/`.zshrc`
38
38
@@ -72,9 +72,9 @@ function create(Object options)
72
72
73
73
`Gulp.create` creates a new `gulp` instance with the given `options`. These options default to:
74
74
75
-
- `options.log = true`, pass `false` for an instance with no logging
76
-
- `options.repl = false`, by default the REPL is deactivated
77
-
- `options.wait = false`, by default all tasks are run in __parallel__ set to `true` for this instance to run tasks in `series` always
75
+
- `options.log = true` if `false` the instance will have no logging
76
+
- `options.repl = false`the REPL is deactivated by default
77
+
- `options.wait = false`tasks run in __parallel__. Set to `true` to always run tasks in `series`
78
78
79
79
> Is more convenient to use `create` instead of `new Gulp` but its up to you
80
80
@@ -167,7 +167,7 @@ ___
167
167
functionstart(Arraytasks, args...)
168
168
```
169
169
170
-
If the `tasks` is an array these will be the tasks to run (either `string` or `function`) and the rest of arguments are passed to the tasks that will run.
170
+
If `tasks` is an array it will be taken as the tasks to run (`strings` and/or `functions`). The rest of arguments are passed down.
0 commit comments