Interface WatchOptions

interface WatchOptions {
    clear?: boolean;
    debounce?: number;
    depth?: number;
    exclude?: string | string[];
    fail?: boolean;
    glob?: boolean;
    include?: string | string[];
    parallel?: boolean;
    poll?: number;
    prime?: boolean;
    symlinks?: boolean;
}

Properties

clear?: boolean

Clear stdout before tasks execution

debounce?: number

Avoids rapid task restarts by debouncing by a set number of ms

depth?: number

Limits how many subdirectories will be traversed

exclude?: string | string[]

Paths to exclude

fail?: boolean

Finalizes the watch effort if a given task fails

glob?: boolean

Parse globs in paths

include?: string | string[]

Paths to include

parallel?: boolean

Doesn't cancel tasks in execution when a new task runs

poll?: number

If set, it will use polling every given ms interval

prime?: boolean

Runs the task once when ready to wait for changes

symlinks?: boolean

Whether to follow symlinks