-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathvue.ts
454 lines (453 loc) · 10.9 KB
/
vue.ts
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
const completionSpec: Fig.Spec = {
name: "vue",
description: "Vue cli tools",
subcommands: [
{
name: "create",
description: "Create a new project powered by vue-cli-service",
args: {
name: "app-name",
},
options: [
{
name: ["-p", "--preset"],
description: "Skip prompts and use saved or remote preset",
args: {
name: "presetName",
},
},
{
name: ["-d", "--default"],
description: "Skip prompts and use default preset",
},
{
name: ["-i", "--inlinePreset"],
description: "Skip prompts and use inline JSON string as preset",
args: {
name: "json",
},
},
{
name: ["-m", "--packageManager"],
description: "Use specified npm client when installing dependencies",
args: {
name: "command",
},
},
{
name: ["-r", "--registry"],
description:
"Use specified npm registry when installing dependencies (only for npm)",
args: {
name: "url",
},
},
{
name: ["-g", "--git"],
description: "Force git initialization with initial commit message",
args: {
name: "message",
},
},
{
name: ["-n", "--no-git"],
description: "Skip git initialization",
},
{
name: ["-f", "--force"],
description: "Overwrite target directory if it exists",
},
{
name: "--merge",
description: "Merge target directory if it exists",
},
{
name: ["-c", "--clone"],
description: "Use git clone when fetching remote preset",
},
{
name: ["-X", "--proxy"],
description: "Use specified proxy when creating project",
args: {
name: "proxyUrl",
},
},
{
name: ["-b", "--bar"],
description: "Scaffold project without beginner instructions",
},
{
name: "--skipGetStarted",
description: 'Skip displaying "Get started" instructions',
},
{
name: ["-h", "--help"],
description: "Output usage information",
},
],
},
{
name: "add",
description:
"Install a plugin and invoke its generator in an already created project",
args: {
name: "plugin",
},
options: [
{
name: "--registry",
description:
"Use specified npm registry when installing dependencies (only for npm)",
args: {
name: "url",
},
},
{
name: ["-h", "--help"],
description: "Output usage information",
},
],
},
{
name: "invoke",
description:
"Invoke the generator of a plugin in an already created project",
args: {
name: "plugin",
},
options: [
{
name: "--registry",
description:
"Use specified npm registry when installing dependencies (only for npm)",
args: {
name: "url",
},
},
{
name: ["-h", "--help"],
description: "Output usage information",
},
],
},
{
name: "inspect",
description:
"Inspect the webpack config in a project with vue-cli-service",
args: {},
options: [
{
name: "--mode",
args: {
name: "mode",
},
},
{
name: "--rule",
description: "Inspect a specific module rule",
args: {
name: "ruleName",
},
},
{
name: "--plugin",
description: "Inspect a specific plugin",
args: {
name: "pluginName",
},
},
{
name: "--rules",
description: "List all module rule names",
},
{
name: "--plugins",
description: "List all plugin names",
},
{
name: ["-v", "--verbose"],
description: "Show full function definitions in output",
},
{
name: ["-h", "--help"],
description: "Output usage information",
},
],
},
{
name: "serve",
description:
"Serve a .js or .vue file in development mode with zero config",
args: {
template: "filepaths",
},
options: [
{
name: ["-o", "--open"],
description: "Open browser",
},
{
name: ["-c", "--copy"],
description: "Copy local url to clipboard",
},
{
name: ["-p", "--port"],
description:
"Port used by the server (default: 8080 or next available port)",
args: {
name: "port",
},
},
{
name: ["-h", "--help"],
description: "Output usage information",
},
],
},
{
name: "build",
description:
"Build a .js or .vue file in production mode with zero config",
args: {
template: "filepaths",
},
options: [
{
name: ["-t", "--target"],
description: "Build target (app | lib | wc | wc-async, default: app)",
args: {
name: "target",
},
},
{
name: ["-n", "--name"],
description:
"Name for lib or web-component mode (default: entry filename)",
args: {
name: "name",
},
},
{
name: ["-d", "--destination"],
description: "Output directory (default: dist)",
args: {
name: "dir",
},
},
{
name: ["-h", "--help"],
description: "Output usage information",
},
],
},
{
name: "ui",
description: "Start and open the vue-cli ui",
options: [
{
name: ["-H", "--host"],
description: "Host used for the UI server (default: localhost)",
args: {
name: "host",
},
},
{
name: ["-p", "--port"],
description:
"Port used for the UI server (by default search for available port)",
args: {
name: "port",
},
},
{
name: ["-D", "--dev"],
description: "Run in dev mode",
},
{
name: "--quiet",
description: "Don't output starting messages",
},
{
name: "--headless",
description: "Don't open browser on start and output port",
},
{
name: ["-h", "--help"],
description: "Output usage information",
},
],
},
{
name: "init",
description:
"Generate a project from a remote template (legacy API, requires @vue/cli-init)",
args: [
{
name: "template",
},
{
name: "app-name",
},
],
options: [
{
name: ["-c", "--clone"],
description: "Use git clone when fetching remote template",
},
{
name: "--offline",
description: "Use cached template",
},
{
name: ["-h", "--help"],
description: "Output usage information",
},
],
},
{
name: "config",
description: "Inspect and modify the config",
args: {
name: "value",
},
options: [
{
name: ["-g", "--get"],
description: "Get value from option",
args: {
name: "path",
},
},
{
name: ["-s", "--set"],
description: "Set option value",
args: {
name: "value",
},
},
{
name: ["-d", "--delete"],
description: "Delete option from config",
args: {
name: "path",
},
},
{
name: ["-e", "--edit"],
description: "Open config with default editor",
},
{
name: "--json",
description: "Outputs JSON result only",
},
{
name: ["-h", "--help"],
description: "Output usage information",
},
],
},
{
name: "outdated",
description:
"(experimental) check for outdated vue cli service / plugins",
options: [
{
name: "--next",
description:
"Also check for alpha / beta / rc versions when upgrading",
},
{
name: ["-h", "--help"],
description: "Output usage information",
},
],
},
{
name: "upgrade",
description: "(experimental) upgrade vue cli service / plugins",
args: {
name: "plugin-name",
},
options: [
{
name: ["-t", "--to"],
description: "Upgrade <package-name> to a version that is not latest",
args: {
name: "version",
},
},
{
name: ["-f", "--from"],
description:
"Skip probing installed plugin, assuming it is upgraded from the designated version",
args: {
name: "version",
},
},
{
name: ["-r", "--registry"],
description:
"Use specified npm registry when installing dependencies",
args: {
name: "url",
},
},
{
name: "--all",
description: "Upgrade all plugins",
},
{
name: "--next",
description:
"Also check for alpha / beta /rc versions when upgrading",
},
{
name: ["-h", "--help"],
description: "Output usage information",
},
],
},
{
name: "migrate",
description:
"(experimental) run migrator for an already-installed cli plugin",
args: {
name: "plugin-name",
},
options: [
{
name: ["-f", "--from"],
description: "The base version for the migrator to migrate from",
args: {
name: "version",
},
},
{
name: ["-h", "--help"],
description: "Output usage information",
},
],
},
{
name: "info",
description: "Print debugging information about your environment",
options: [
{
name: ["-h", "--help"],
description: "Output usage information",
},
],
},
],
options: [
{
name: ["-V", "--version"],
description: "Output the version number",
},
{
name: ["-h", "--help"],
description: "Output usage information",
},
],
};
export default completionSpec;