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.

13 lines (12 loc) 387 B
import { Tree } from '@nx/devkit'; /** * Remove eas-cli from dev dependencies. * Use globally eas-cli. * * Remove metro and metro-resolver from dev dependencies. * react-native has dependency of @react-native/community-cli-plugin * @react-native/community-cli-plugin has dependency of metro * @param tree * @returns */ export default function update(tree: Tree): Promise<void>;