forked from joelklint/nx-aws-cdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerators.json
More file actions
24 lines (24 loc) · 795 Bytes
/
generators.json
File metadata and controls
24 lines (24 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"generators": {
"init": {
"factory": "./src/generators/init/init",
"schema": "./src/generators/init/schema.json",
"description": "Add AWS CDK capabilities to a workspace"
},
"bootstrap": {
"factory": "./src/generators/bootstrap/bootstrap",
"schema": "./src/generators/bootstrap/schema.json",
"description": "Enable AWS CDK in a remote AWS environment"
},
"appify": {
"factory": "./src/generators/appify/appify",
"schema": "./src/generators/appify/schema.json",
"description": "Add AWS CDK capabilities to an existing app"
},
"app": {
"factory": "./src/generators/app/app",
"schema": "./src/generators/app/schema.json",
"description": "Create a new app with AWS CDK capabilities"
}
}
}