UNPKG

@nx/react-native

Version:

The Nx Plugin for React Native contains generators for managing React Native applications and libraries within an Nx workspace. It provides: -Integration with libraries such as Jest, Detox, and Storybook. -Scaffolding for creating buildable libraries th

14 lines (13 loc) 591 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = ensureSymlinkExecutor; const ensure_node_modules_symlink_1 = require("../../utils/ensure-node-modules-symlink"); /** * TODO (@xiongemi): remove this function in v20. * @deprecated It is no longer needed for react native 73. */ async function* ensureSymlinkExecutor(_, context) { const projectRoot = context.projectsConfigurations.projects[context.projectName].root; (0, ensure_node_modules_symlink_1.ensureNodeModulesSymlink)(context.root, projectRoot); yield { success: true }; }