graphql-engine/frontend/apps/nx/internal-plugin-e2e/project.json
Nicolas Beaussart 9667164942 frontend: introduce tags system for libs
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/9063
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 1f5918b1e56452967a93739ffc21b4cfafbd84e4
2023-05-09 10:43:51 +00:00

28 lines
776 B
JSON

{
"name": "nx-internal-plugin-e2e",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"sourceRoot": "apps/nx/internal-plugin-e2e/src",
"targets": {
"e2e": {
"executor": "@nrwl/nx-plugin:e2e",
"options": {
"target": "nx-internal-plugin:build",
"jestConfig": "apps/nx/internal-plugin-e2e/jest.config.ts"
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
"apps/nx/internal-plugin-e2e/**/*.ts",
"apps/nx/internal-plugin-e2e/**/*.json"
]
}
}
},
"tags": ["scope:nx-plugins", "type:e2e"],
"implicitDependencies": ["nx-internal-plugin"]
}