@nx/react-native
Version:
15 lines • 624 B
TypeScript
import { Tree } from '@nx/devkit';
export interface ReactNativeProjectDetectionResult {
isReactNative: boolean;
reason?: string;
}
/**
* Determines if a project is a React Native project by checking for specific files
* and ensuring it's not an Expo project
*/
export declare function isReactNativeProject(tree: Tree, projectRoot: string): Promise<ReactNativeProjectDetectionResult>;
/**
* Gets all React Native projects in the workspace
*/
export declare function getAllReactNativeProjects(tree: Tree, projects: Map<string, any>): Promise<string[]>;
//# sourceMappingURL=react-native-project-detection.d.ts.map