Skip to content

Latest commit

 

History

History
58 lines (35 loc) · 1.09 KB

test.md

File metadata and controls

58 lines (35 loc) · 1.09 KB

Options

CacheOptions

type: BackfillCacheOptions & { environmentGlob: string[] }

ConfigOptions

cache

type: boolean

Should cache be enabled

cacheOptions

type: CacheOptions

Backfill cache options

ignore

type: string[]

Which files to ignore when calculating scopes

npmClient

type: "npm" | "yarn" | "pnpm"

Which NPM Client to use when running npm lifecycle scripts

pipeline

type: Pipeline

Defines the task pipeline, prefix with "^" character to denote a topological dependency

priorities

type: Priority[]

Optional priority to set on tasks in a package to make the scheduler give priority to tasks on the critical path for high priority tasks

Pipeline

Pipelines

type: Map<string, Pipeline>

Priority

package

type: string

package name, as in package.json

priority

type: number

priority, the higher the more priority; undefined priority means lowest priority

task

type: string

task name, as listed in the scripts section of package.json