-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
generators.json
24 lines (24 loc) · 880 Bytes
/
generators.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "nx-ktor",
"version": "0.0.1",
"generators": {
"project": {
"factory": "./src/generators/project/generator",
"schema": "./src/generators/project/schema.json",
"description": "Creates a `Ktor` project",
"aliases": ["proj", "new", "create"]
},
"link": {
"factory": "./src/generators/link/generator",
"schema": "./src/generators/link/schema.json",
"description": "Generator to add an implicit dependency between a source (Ktor) project in the workspace and another project"
},
"preset": {
"factory": "./src/generators/preset/generator",
"schema": "./src/generators/preset/schema.json",
"description": "Initializes a workspace with an nx-ktor inside of it. Use as: `create-nx-workspace --preset @nxrocks/nx-ktor`.",
"x-use-standalone-layout": true,
"hidden": true
}
}
}