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.

19 lines (18 loc) 814 B
// command to run https://github.com/expo/eas-cli/tree/main#eas-build // options from github.com/expo/eas-cli/blob/main/packages/eas-cli/src/commands/build/index.ts export interface ExpoEasBuildOptions { platform: 'ios' | 'android' | 'all'; profile?: string; interactive: boolean; // default is true local: boolean; // default is false output?: string; wait: boolean; // default is true clearCache: boolean; // default is false json: boolean; // default is false autoSubmit: boolean; // default is false autoSubmitWithProfile?: string; message?: string; // values from https://github.com/expo/eas-build/blob/main/packages/logger/src/level.ts buildLoggerLevel: 'trace' | 'debug' | 'info' | 'warn' | 'error' | 'fatal'; // default is info freezeCredentials: boolean; // default is false }