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.

16 lines (15 loc) 549 B
export declare function tmpFolder(): string; /** * The directory where the e2e workspace resides in. * * @param path path within the e2e directory * @returns `'${process.cwd()}/tmp/nx-e2e/proj/<path>'` */ export declare function tmpProjPath(path?: string): string; /** * The workspace backup directory. This is used for caching of the creation of the workspace. * * @param path path within the e2e directory * @returns `'${process.cwd()}/tmp/nx-e2e/proj-backup/<path>'` */ export declare function tmpBackupProjPath(path?: string): string;