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

50 lines (49 loc) 1.26 kB
{ "name": "react-native", "$schema": "../../node_modules/nx/schemas/project-schema.json", "sourceRoot": "packages/react-native/src", "projectType": "library", "targets": { "build-base": { "executor": "@nx/js:tsc", "options": { "assets": [ "packages/react-native/*.md", { "input": "packages/react-native", "glob": "**/files/**/.babelrc.template", "output": "/" }, { "input": "packages/react-native/src", "glob": "**/!(*.ts)", "output": "/src" }, { "input": "packages/react-native", "glob": "**/*.json", "ignore": ["**/tsconfig*.json"], "output": "/" }, { "input": "packages/react-native", "glob": "**/*.d.ts", "output": "/" }, { "input": "", "glob": "LICENSE", "output": "/" } ] } }, "build": { "executor": "nx:run-commands", "outputs": ["{workspaceRoot}/build/packages/react-native"], "options": { "command": "node ./scripts/copy-readme.js react-native" } } } }