UNPKG

@launchql/core

Version:

LaunchQL Package and Migration Tools

15 lines (14 loc) 610 B
/** * Finds the module path by looking for launchql.plan. * @param cwd - Current working directory. * @returns A promise that resolves to the directory path containing `launchql.plan`. */ export declare const modulePath: (cwd?: string) => string; /** * Finds the LaunchQL project path. * @param cwd - Current working directory. * @returns A promise that resolves to the directory path containing `launchql.json`. */ export declare const launchqlPath: (cwd?: string) => string; export declare const getWorkspacePath: (cwd: string) => string; export declare const getModulePath: (cwd: string) => string;