UNPKG

@nx/detox

Version:

The Nx Plugin for Detox contains executors and generators for allowing your workspace to use the powerful Detox integration testing capabilities.

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