nx/graph/client-e2e/project.json
2022-11-07 20:18:30 +00:00

59 lines
1.9 KiB
JSON

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