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.

53 lines (52 loc) 1.4 kB
{ "name": "detox", "$schema": "../../node_modules/nx/schemas/project-schema.json", "sourceRoot": "packages/detox/src", "projectType": "library", "targets": { "build": { "outputs": ["{workspaceRoot}/dist/packages/detox/README.md"], "command": "node ./scripts/copy-readme.js detox", "dependsOn": ["^build", "build-base", "legacy-post-build"] }, "legacy-post-build": { "executor": "@nx/workspace-plugin:legacy-post-build", "options": { "tsConfig": "./tsconfig.lib.json", "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": "/" } ] } } } }