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

11 lines (10 loc) 581 B
/** * @deprecated use `nx run @nx/react-native:upgrade` instead. * TODO (@xiongemi): remove this generator for nx v19 * This function is a destructive command that replace React Native iOS and Android code with latest. * It would replace the Android and iOS folder entirely. */ import { GeneratorCallback, Tree } from '@nx/devkit'; import { UpgradeNativeConfigureSchema } from './schema'; export declare function reactNativeUpgradeNativeGenerator(host: Tree, schema: UpgradeNativeConfigureSchema): Promise<GeneratorCallback>; export default reactNativeUpgradeNativeGenerator;