-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy pathexecutors.json
More file actions
30 lines (30 loc) · 1.24 KB
/
executors.json
File metadata and controls
30 lines (30 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"$schema": "http://json-schema.org/schema",
"executors": {
"compile-typedoc": {
"implementation": "./src/executors/compile-typedoc/executor",
"schema": "./src/executors/compile-typedoc/schema.json",
"description": "compile-typedoc executor"
},
"e2e-test-app": {
"implementation": "./src/executors/e2e-test-app/executor",
"schema": "./src/executors/e2e-test-app/schema.json",
"description": "e2e-test-app executor"
},
"e2e-test": {
"implementation": "./src/executors/e2e-test/executor",
"schema": "./src/executors/e2e-test/schema.json",
"description": "e2e-test executor"
},
"transform-translations": {
"implementation": "./src/executors/transform-translations/executor",
"schema": "./src/executors/transform-translations/schema.json",
"description": "Transforms properties to json"
},
"i18n-manage": {
"implementation": "./src/executors/i18n-manage/executor",
"schema": "./src/executors/i18n-manage/schema.json",
"description": "Manage i18n translation keys across all language files"
}
}
}