-
Notifications
You must be signed in to change notification settings - Fork 139
/
oclif.manifest.json
149 lines (149 loc) · 4.21 KB
/
oclif.manifest.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"version": "0.0.0-development",
"commands": {
"create": {
"id": "create",
"description": "create (scaffold) a new app",
"strict": true,
"pluginName": "chimp",
"pluginAlias": "chimp",
"pluginType": "core",
"aliases": [],
"examples": [
"$ chimp create my-new-app",
"$ chimp create my-new-app -a ~src -g ~chimp-helpers"
],
"flags": {
"help": {
"name": "help",
"type": "boolean",
"char": "h",
"description": "Show CLI help.",
"allowNo": false
},
"appPrefix": {
"name": "appPrefix",
"type": "option",
"char": "a",
"description": "prefix that points to the sourcecode of your app",
"multiple": false,
"default": "~app"
},
"generatedPrefix": {
"name": "generatedPrefix",
"type": "option",
"char": "g",
"description": "prefix that points to the generated by chimp helper code",
"multiple": false,
"default": "~generated"
}
},
"args": {
"name": {
"name": "name",
"description": "name of the new app, also used as the directory",
"required": true
}
}
},
"eject": {
"id": "eject",
"description": "Eject from chimp. While chimp is not a runtime dependency and your project will still run after removing it, ejecting offers a cleaner development environment. While we hope you never need to eject, it is reassuring to know you have the option. If you choose to eject or are considering it, please inform us. Remember, you are always just one command away from this choice.",
"strict": true,
"pluginName": "chimp",
"pluginAlias": "chimp",
"pluginType": "core",
"aliases": [],
"examples": [
"$ chimp eject"
],
"flags": {
"help": {
"name": "help",
"type": "boolean",
"char": "h",
"description": "Show CLI help.",
"allowNo": false
}
},
"args": {}
},
"generate": {
"id": "generate",
"description": "generate GraphQL code",
"strict": true,
"pluginName": "chimp",
"pluginAlias": "chimp",
"pluginType": "core",
"aliases": [],
"examples": [
"$ chimp generate",
"$ chimp generate -a ~src -g ~chimp-helpers"
],
"flags": {
"help": {
"name": "help",
"type": "boolean",
"char": "h",
"description": "Show CLI help.",
"allowNo": false
},
"appPrefix": {
"name": "appPrefix",
"type": "option",
"char": "a",
"description": "prefix that points to the sourcecode of your app",
"multiple": false,
"default": "~app"
},
"generatedPrefix": {
"name": "generatedPrefix",
"type": "option",
"char": "g",
"description": "prefix that points to the generated by chimp helper code",
"multiple": false,
"default": "~generated"
},
"modulesPath": {
"name": "modulesPath",
"type": "option",
"char": "p",
"description": "path to the graphQL modules, only use if you are migrating an existing Apollo App and you want to use chimp only for a part of it",
"multiple": false
}
},
"args": {}
},
"init": {
"id": "init",
"description": "init Chimp",
"strict": true,
"pluginName": "chimp",
"pluginAlias": "chimp",
"pluginType": "core",
"aliases": [],
"examples": [
"$ chimp init",
"$ chimp init -p ./src/chimp-modules"
],
"flags": {
"help": {
"name": "help",
"type": "boolean",
"char": "h",
"description": "Show CLI help.",
"allowNo": false
},
"modulesPath": {
"name": "modulesPath",
"type": "option",
"char": "p",
"description": "path to the GraphQL modules.",
"multiple": false,
"default": "./src/modules"
}
},
"args": {}
}
}
}