UNPKG

gulp-chef

Version:

Cascading configurable recipes for gulp 4.0. An elegant, intuitive way to reuse gulp tasks.

47 lines (46 loc) 1.31 kB
{ "type": "object", "properties": { "description": { "description": "Description of this task.", "type": "string" }, "name": { "description": "Name of this task.", "type": "string" }, "order": { "description": "Series execution order of this task. Just used to sort, don't have to be unique or continuous.", "type": "integer" }, "plugin": { "description": "The name of plugin module to use.", "type": ["string", "any"] }, "parallel": { "description": "Same as task, but child tasks are forced to run in parallel.", "type": "array" }, "recipe": { "description": "The name of recipe to use.", "type": "string" }, "series": { "description": "Same as task, but child tasks are forced to run in series.", "type": "array" }, "spit": { "description": "Instruct recipe or task to write file(s) out if was optional.", "type": "boolean" }, "task": { "description": "Inline function(s) or reference(s) to other task(s). If provided as an array, child tasks are forced to run in series. If an object, child tasks are forced to run in parallel.", "type": "array" }, "visibility": { "description": "Visibility of this task. Valid values are \"visible\" and \"hidden\".", "type": "string" } }, "additionalProperties": false }