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

19 lines (18 loc) 621 B
import { GeneratorCallback } from '@nx/devkit'; /** * Run pod install on ios directory * @param iosDirectory ios directory that contains Podfile * @returns resolve with 0 if not error, reject with error otherwise */ export declare function runPodInstall(iosDirectory: string, install?: boolean, options?: { buildFolder?: string; repoUpdate?: boolean; deployment?: boolean; useBundler?: boolean; }): GeneratorCallback; export declare function podInstall(iosDirectory: string, options?: { buildFolder?: string; repoUpdate?: boolean; deployment?: boolean; useBundler?: boolean; }): void;