@khulnasoft.com/dev-tools
Version:
KhulnaSoft Visual CMS Devtools
7 lines (6 loc) • 556 B
TypeScript
import type { DevToolsSys, PackageJSON } from "../types";
export declare function hasTsconfig(sys: DevToolsSys): Promise<boolean>;
export declare function findKhulnasoftRegistry(sys: DevToolsSys, defaultFolder: string): Promise<string>;
export declare function findPackageJson(sys: DevToolsSys, dir: string): Promise<PackageJSON | null>;
export declare function findUpNodeModules(sys: DevToolsSys, p: string): Promise<string>;
export declare function recursiveFindDir(sys: DevToolsSys, dir: string, findDirectoryName: string): Promise<string | undefined>;