@shopify/cli-kit
Version:
A set of utilities, interfaces, and models that are common across all the platform features
9 lines (8 loc) • 393 B
TypeScript
/**
* Tries to identify the using of a framework analyzing the existence and/or content of different files inside a
* specific directory.
*
* @param rootDirectory - Directory from which the files required for each framework are searched
* @returns The name of the framework used or 'unknown' otherwise
*/
export declare function resolveFramework(rootDirectory: string): Promise<string>;