UNPKG

@nx/plugin

Version:

This plugin is used to create Nx plugins! It contains generators for generating common plugin features like generators, executors, migrations and more.

28 lines (27 loc) 603 B
/** * Run a command asynchronously inside the e2e directory. * * @param command * @param opts */ export declare function runCommandAsync(command: string, opts?: { silenceError?: boolean; env?: NodeJS.ProcessEnv; cwd?: string; }): Promise<{ stdout: string; stderr: string; }>; /** * Run a nx command asynchronously inside the e2e directory * @param command * @param opts */ export declare function runNxCommandAsync(command: string, opts?: { silenceError?: boolean; env?: NodeJS.ProcessEnv; cwd?: string; }): Promise<{ stdout: string; stderr: string; }>;