UNPKG

@nrwl/workspace

Version:

The Workspace plugin contains executors and generators that are useful for any Nx workspace. It should be present in every Nx workspace and other plugins build on it.

14 lines (13 loc) 458 B
import { Tree } from '@nrwl/devkit'; /** * Calls a function for each different options that an executor is configured with */ export declare function forEachExecutorOptions<Options>(tree: Tree, /** * Name of the executor to update options for */ executorName: string, /** * Callback that is called for each options configured for a builder */ callback: (currentValue: Options, project: string, target: string, configuration?: string) => void): void;