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

42 lines (41 loc) 1.2 kB
{ "$schema": "https://json-schema.org/schema", "cli": "nx", "$id": "NxReactNativeUpgradeNativeConfigure", "title": "React native upgrade native configuration", "description": "Upgrade native iOS and Android code to latest.", "type": "object", "properties": { "name": { "type": "string", "description": "Application project name to upgrade native files.", "$default": { "$source": "argv", "index": 0 }, "x-dropdown": "project" }, "displayName": { "description": "The display name to show in the application. Defaults to name.", "type": "string" }, "js": { "type": "boolean", "description": "Generate JavaScript files rather than TypeScript files", "default": false }, "e2eTestRunner": { "description": "Adds the specified e2e test runner.", "type": "string", "enum": ["cypress", "playwright", "detox", "none"], "default": "cypress" }, "install": { "type": "boolean", "description": "Runs `pod install` for native modules before building iOS app.", "default": true, "x-priority": "internal" } }, "required": ["name"] }