nx/dep-graph/client-e2e/project.json

50 lines
1.5 KiB
JSON

{
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "dep-graph/client-e2e/src",
"projectType": "application",
"targets": {
"e2e-base": {
"executor": "@nrwl/cypress:cypress",
"options": {
"tsConfig": "dep-graph/client-e2e/tsconfig.e2e.json",
"baseUrl": "http://localhost:4200"
},
"configurations": {
"dev": {
"cypressConfig": "dep-graph/client-e2e/cypress.json",
"devServerTarget": "dep-graph-client:serve"
},
"watch": {
"cypressConfig": "dep-graph/client-e2e/cypress-watch-mode.json",
"devServerTarget": "dep-graph-client:serve:watch"
},
"release": {
"cypressConfig": "dep-graph/client-e2e/cypress-release.json",
"devServerTarget": "dep-graph-client:serve:release"
}
},
"defaultConfiguration": "dev"
},
"e2e": {
"executor": "nx:run-commands",
"outputs": [],
"options": {
"commands": [
"npx nx e2e-base e2e-dep-graph-client -c dev",
"npx nx e2e-base e2e-dep-graph-client -c watch",
"npx nx e2e-base e2e-dep-graph-client -c release"
],
"parallel": false
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["dep-graph/client-e2e/**/*.ts"]
}
}
},
"implicitDependencies": ["dep-graph-client"]
}