UNPKG

@nx/react-native

Version:

The Nx Plugin for React Native contains generators for managing React Native applications and libraries within an Nx workspace. It provides: -Integration with libraries such as Jest, Detox, and Storybook. -Scaffolding for creating buildable libraries th

15 lines 624 B
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