UNPKG

nx-remotecache-custom-3

Version:

Build custom caching for @nrwl/nx in a few lines of code

26 lines (25 loc) 728 B
import { DefaultTasksRunnerOptions } from "@nrwl/workspace/src/tasks-runner/default-tasks-runner"; export declare type CustomRunnerOptions<T extends Object = Object> = T & DefaultTasksRunnerOptions & { /** * Sets task runner name for logging. */ name?: string; /** * Sets verbose error logging for `nx-remotecache-custom`. */ verbose?: boolean; /** * Hide success and info logs. Only display warning and error logs. */ silent?: boolean; /** * Enables / disables reading `.env` files into the `proces.env`. * * @default true */ dotenv?: boolean; /** * Path to folder containing `.env` files. Optional. */ dotenvPath?: string; };