UNPKG

@nx/expo

Version:

The Expo Plugin for Nx contains executors and generators for managing and developing an expo application within your workspace. For example, you can directly build for different target platforms as well as generate projects and publish your code.

17 lines (16 loc) 569 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; }): GeneratorCallback; export declare function podInstall(iosDirectory: string, options?: { buildFolder?: string; repoUpdate?: boolean; deployment?: boolean; }): void;