vega-frontend-monorepo/tools/executors/next/executor.json
Matthew Russell 5666b8f8e4
chore: add custom export executor for next app (#1999)
* chore: add custom export executor for next app

* chore: update tsconfig path for export executor
2022-11-08 18:59:49 -08:00

20 lines
573 B
JSON

{
"executors": {
"serve": {
"implementation": "./serve/impl",
"schema": "./serve/schema.json",
"description": "Starts a next server with an optional explicit environment."
},
"build": {
"implementation": "./build/impl",
"schema": "./build/schema.json",
"description": "Builds a next app with an optional explicit environment."
},
"export": {
"implementation": "./export/impl",
"schema": "./serve/schema.json",
"description": "Exports a next app with an optional explicit environment."
}
}
}