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/api/registry.md
+40-41
Original file line number
Diff line number
Diff line change
@@ -5,60 +5,59 @@ hide_title: true
5
5
sidebar_label: registry()
6
6
-->
7
7
8
-
# `gulp.registry([registry])`
8
+
# registry()
9
9
10
-
Get or set the underlying task registry. Inherited from [undertaker]; see the undertaker documention on [registries](https://github.com/phated/undertaker#registryregistryinstance). Using this, you can change registries that enhance gulp in different ways. Utilizing a custom registry has at least three use cases:
-[Sharing functionality](https://github.com/phated/undertaker#sharing-functionalities) (e.g. you could override the task prototype to add some additional logging, bind task metadata or include some config settings.)
14
-
- Handling other behavior that hooks into the registry lifecycle (see [gulp-hub](https://github.com/frankwallis/gulp-hub) for an example)
11
+
Allows custom registries to be plugged into the task system, which can provide shared tasks or augmented functionality.
15
12
16
-
To build your own custom registry see the [undertaker documentation on custom registries](https://github.com/phated/undertaker#custom-registries).
13
+
**Note:** Only tasks registered with `task()` will be provided to the custom registry. The task functions passed directly to `series()` or `parallel()` will not be provided - if you need to customize the registry behavior, compose tasks with string references.
17
14
18
-
## registry
15
+
When assigning a new registry, each task from the current registry will be transferred and the current registry will be replaced with the new one. This allows for adding multiple custom registries in sequential order.
19
16
20
-
A registry instance. When passed in, the tasks from the current registry will be transferred to the new registry and then current registry will be replaced with the new registry.
17
+
See [Creating Custom Registries][creating-custom-registries] for details.
21
18
22
-
## Example
23
-
24
-
This example shows how to create and use a simple custom registry to add tasks.
19
+
## Usage
25
20
26
21
```js
27
-
//gulpfile.js
28
-
var gulp=require('gulp');
22
+
const { registry, task, series } =require('gulp');
| registryInstance | object | An instance - not the class - of a custom registry. |
46
+
47
+
### Returns
48
+
49
+
If a `registryInstance` is passed, nothing will be returned. If no arguments are passed, returns the current registry instance.
50
+
51
+
### Errors
52
+
53
+
When a constructor (instead of an instance) is passed as `registryInstance`, throws an error with the message, "Custom registries must be instantiated, but it looks like you passed a constructor".
54
+
55
+
When a registry without a `get` method is passed as `registryInstance`, throws an error with the message, "Custom registry must have `get` function".
56
+
57
+
When a registry without a `set` method is passed as `registryInstance`, throws an error with the message, "Custom registry must have `set` function".
58
+
59
+
When a registry without an `init` method is passed as `registryInstance`, throws an error with the message, "Custom registry must have `init` function"
60
+
61
+
When a registry without a `tasks` method is passed as `registryInstance`, throws an error with the message, "Custom registry must have `tasks` function".
0 commit comments