UNPKG

@traf/nx

Version:

A cli tool that wraps `@traf/core` to be used with Nx.

17 lines (16 loc) 565 B
export declare const log: (message: string) => void; export declare const affectedAction: ({ cwd, action, all, base, json, restArgs, tsConfigFilePath, includeFiles, target, experimentalLockfileCheck, }: AffectedOptions) => Promise<void>; interface AffectedOptions { cwd: string; tsConfigFilePath: string; action?: string; all?: boolean; base?: string; json: boolean; includeFiles: string[]; restArgs: string[]; target: string[]; experimentalLockfileCheck?: boolean; } export declare function run(): Promise<void>; export {};