nx/packages/nx-plugin/executors.json
Miroslav Jonaš 9af4004922
fix(nx-plugin): export compatibility e2e builder in a separate file (#6246)
Co-authored-by: Leosvel Pérez Espinosa <leosvel.perez.espinosa@gmail.com>
2021-07-06 10:54:01 +02:00

17 lines
440 B
JSON

{
"builders": {
"e2e": {
"implementation": "./src/executors/e2e/compat",
"schema": "./src/executors/e2e/schema.json",
"description": "Creates and runs the e2e tests for an Nx Plugin."
}
},
"executors": {
"e2e": {
"implementation": "./src/executors/e2e/e2e.impl",
"schema": "./src/executors/e2e/schema.json",
"description": "Creates and runs the e2e tests for an Nx Plugin."
}
}
}