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.

17 lines (16 loc) 379 B
/** * Run a nx command inside the e2e directory * @param command * @param opts * * @see tmpProjPath */ export declare function runNxCommand(command?: string, opts?: { silenceError?: boolean; env?: NodeJS.ProcessEnv; cwd?: string; }): string; export declare function runCommand(command: string, opts: { env?: NodeJS.ProcessEnv; cwd?: string; }): string;