Interface CombineOptions

interface CombineOptions {
    exclude?: null | string[];
    include?: null | string[];
}

Properties

Properties

exclude?: null | string[]

An array of strings indicating the name of the tasks to exclude for a task record. A task name is the stringification of its route in the record, joined by with a ':' character for each depth level.

include?: null | string[]

An array of strings indicating the name of the tasks to include for a task record. A task name is the stringification of its route in the record, joined by with a ':' character for each depth level. Targetting a level with inner tasks will run all of them.