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.

10 lines (9 loc) 352 B
import { ExecutorContext } from '@nx/devkit'; export interface ExpoEnsureSymlinkOutput { success: boolean; } /** * TODO (@xiongemi): remove this function in v20. * @deprecated It is no longer needed for react native 73. */ export default function ensureSymlinkExecutor(_: any, context: ExecutorContext): AsyncGenerator<ExpoEnsureSymlinkOutput>;