graphql-engine/frontend/libs/nx/internal-plugin/executors.json
Nicolas Beaussart d861a2a3c8 frontend: setup buid validator executor
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8446
GitOrigin-RevId: b63613585a880c1812a7012640937cf0e98253be
2023-03-22 20:53:53 +00:00

21 lines
833 B
JSON

{
"$schema": "http://json-schema.org/schema",
"executors": {
"build-server-assets": {
"implementation": "./src/executors/build-server-assets/executor",
"schema": "./src/executors/build-server-assets/schema.json",
"description": "Used to build server complient assets from the existing build"
},
"chromatic": {
"implementation": "./src/executors/chromatic/executor",
"schema": "./src/executors/chromatic/schema.json",
"description": "chromatic executor"
},
"validate-javascript-bundle-output": {
"implementation": "./src/executors/validate-javascript-bundle-output/executor",
"schema": "./src/executors/validate-javascript-bundle-output/schema.json",
"description": "A list of checks againts final bundles to do non regression testing on them"
}
}
}