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.

18 lines 698 B
import { GeneratorCallback } from '@nx/devkit'; /** * Run pod install on ios directory * @deprecated This should be removed as Expo runs this automatically on `run-ios` * @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; //# sourceMappingURL=pod-install-task.d.ts.map