UNPKG

@nx/cypress

Version:

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

54 lines (53 loc) 1.9 kB
{ "name": "cypress", "$schema": "../../node_modules/nx/schemas/project-schema.json", "sourceRoot": "packages/cypress", "projectType": "library", "targets": { "build": { "outputs": ["{workspaceRoot}/dist/packages/cypress/README.md"], "command": "node ./scripts/copy-readme.js cypress", "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/cypress", "glob": "**/files/**", "output": "/" }, { "input": "packages/cypress", "glob": "**/files/**/.gitkeep", "output": "/" }, { "input": "packages/cypress", "glob": "**/*.json", "ignore": ["**/tsconfig*.json", "project.json", ".eslintrc.json"], "output": "/" }, { "input": "packages/cypress", "glob": "**/*.js", "ignore": ["**/jest.config.js"], "output": "/" }, { "input": "packages/cypress", "glob": "**/*.d.ts", "output": "/" }, { "input": "", "glob": "LICENSE", "output": "/" } ] } } } }