ResolveOptions interface
export interface ResolveOptions
Properties
| Property | Modifiers | Type | Description |
|---|---|---|---|
| bail? | boolean | (Optional) Stop immediately when an error occurred. | |
| concurrency? | number | (Optional) Maximum number of concurrent tasks. | |
| index? | number[] | (Optional) Source index of a manifest. | |
| path? | string | (Optional) Source path of a manifest. | |
| validate? | boolean | (Optional) Execute validate method of each values. |
Methods
| Method | Description |
|---|---|
| transform(manifest)? | (Optional) Transform a manifest. This function is called when a new manifest is found, and before the validation. The return value will override the data of the manifest. If the return value is undefined or null, the manifest will be removed from the result. |