Skip to content

Commit d680487

Browse files
janiceilenephated
authored andcommittedOct 19, 2018
Docs: Update registry() documentation
1 parent dc3cba7 commit d680487

File tree

1 file changed

+40
-41
lines changed

1 file changed

+40
-41
lines changed
 

‎docs/api/registry.md

+40-41
Original file line numberDiff line numberDiff line change
@@ -5,60 +5,59 @@ hide_title: true
55
sidebar_label: registry()
66
-->
77

8-
# `gulp.registry([registry])`
8+
# registry()
99

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:
1110

12-
- [Sharing tasks](https://github.com/phated/undertaker#sharing-tasks)
13-
- [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.
1512

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.
1714

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.
1916

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.
2118

22-
## Example
23-
24-
This example shows how to create and use a simple custom registry to add tasks.
19+
## Usage
2520

2621
```js
27-
//gulpfile.js
28-
var gulp = require('gulp');
22+
const { registry, task, series } = require('gulp');
23+
const FwdRef = require('undertaker-forward-reference');
2924

30-
var companyTasks = require('./myCompanyTasksRegistry.js');
25+
registry(FwdRef());
3126

32-
gulp.registry(companyTasks);
27+
task('default', series('forward-ref'));
3328

34-
gulp.task('one', gulp.parallel('someCompanyTask', function(done) {
35-
console.log('in task one');
36-
done();
37-
}));
29+
task('forward-ref', function(cb) {
30+
// body omitted
31+
cb();
32+
});
3833
```
3934

35+
## Signature
36+
4037
```js
41-
//myCompanyTasksRegistry.js
42-
var util = require('util');
43-
44-
var DefaultRegistry = require('undertaker-registry');
45-
46-
function MyCompanyTasksRegistry() {
47-
DefaultRegistry.call(this);
48-
}
49-
util.inherits(MyCompanyTasksRegistry, DefaultRegistry);
50-
51-
MyCompanyTasksRegistry.prototype.init = function(gulp) {
52-
gulp.task('clean', function(done) {
53-
done();
54-
});
55-
gulp.task('someCompanyTask', function(done) {
56-
console.log('performing some company task.');
57-
done();
58-
});
59-
};
60-
61-
module.exports = new MyCompanyTasksRegistry();
38+
registry([registryInstance])
6239
```
6340

64-
[undertaker]: https://github.com/gulpjs/undertaker
41+
### Parameters
42+
43+
| parameter | type | note |
44+
|:--------------:|:-----:|--------|
45+
| 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".
62+
63+
[creating-custom-registries]: LINK_NEEDED

0 commit comments

Comments
 (0)
Please sign in to comment.