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.

25 lines (21 loc) 747 B
/* * options from * - android: https://github.com/expo/expo/blob/main/packages/%40expo/cli/src/run/android/resolveOptions.ts * - ios: https://github.com/expo/expo/blob/main/packages/%40expo/cli/src/run/ios/options/resolveOptions.ts */ export interface ExpoRunOptions { // nx options platform: 'ios' | 'android'; install?: boolean; // default is true clean?: boolean; // default is false // ios only scheme?: string; // Xcode scheme to build. xcodeConfiguration?: XcodeConfiguration; // Xcode configuration to build. Default `Debug` // android only variant?: string; // shared between ios and android device?: string; port: number; // default is 8081 bundler: boolean; // default is true buildCache?: boolean; }