-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathnode.ts
503 lines (501 loc) · 16.4 KB
/
node.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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
import { filepaths } from "@fig/autocomplete-generators";
const completionSpec: Fig.Subcommand = {
name: "node",
description: "Run the node interpreter",
args: {
name: "node script",
isScript: true,
generators: filepaths({
extensions: ["mjs", "js", "cjs"],
editFileSuggestions: { priority: 76 },
}),
},
options: [
{
name: ["-e", "--eval=..."],
insertValue: "-e '{cursor}'",
description: "Evaluate script",
args: {},
},
{
name: "--watch",
description: "Watch input files",
},
{
name: "--watch-path",
description: "Specify a watch directory or file",
args: {
name: "path",
template: "filepaths",
},
isRepeatable: true,
},
{
name: "--watch-preserve-output",
description:
"Disable the clearing of the console when watch mode restarts the process",
dependsOn: ["--watch", "--watch-path"],
},
{
name: "--env-file",
description: "Specify a file containing environment variables",
args: {
name: "path",
template: "filepaths",
},
isRepeatable: true,
},
{
name: ["-p", "--print"],
description: "Evaluate script and print result",
},
{
name: ["-c", "--check"],
description: "Syntax check script without executing",
},
{
name: ["-v", "--version"],
description: "Print Node.js version",
},
{
name: ["-i", "--interactive"],
description:
"Always enter the REPL even if stdin does not appear to be a terminal",
},
{
name: ["-h", "--help"],
description: "Print node command line options (currently set)",
},
{
name: "--inspect",
requiresSeparator: true,
args: {
name: "[host:]port",
isOptional: true,
},
description: "Activate inspector on host:port (default: 127.0.0.1:9229)",
},
{
name: "--preserve-symlinks",
description:
"Follows symlinks to directories when examining source code and templates for translation strings",
},
],
generateSpec: async (tokens, executeShellCommand) => {
if (
(
await executeShellCommand({
command: "bash",
args: ["-c", "isAdonisJsonPresentCommand"],
})
).status === 0
) {
return {
name: "node",
subcommands: [
{
name: "ace",
description: "Run AdonisJS command-line",
options: [
{
name: ["-h", "--help"],
description: "Display AdonisJS Ace help",
},
{
name: ["-v", "--version"],
description: "Display AdonisJS version",
},
],
subcommands: [
{
name: "build",
description:
"Compile project from Typescript to Javascript. Also compiles the frontend assets if using webpack encore",
options: [
{
name: ["-prod", "--production"],
description: "Build for production",
},
{
name: "--assets",
description:
"Build frontend assets when webpack encore is installed",
},
{
name: "--no-assets",
description: "Disable building assets",
},
{
name: "--ignore-ts-errors",
description:
"Ignore typescript errors and complete the build process",
},
{
name: "--tsconfig",
description:
"Path to the TypeScript project configuration file",
args: {
name: "path",
description: "Path to tsconfig.json",
},
},
{
name: "--encore-args",
requiresSeparator: true,
insertValue: "--encore-args='{cursor}'",
description:
"CLI options to pass to the encore command line",
},
{
name: "--client",
args: {
name: "name",
},
description:
"Select the package manager to decide which lock file to copy to the build folder",
},
],
},
{
name: ["configure", "invoke"],
description: "Configure a given AdonisJS package",
args: {
name: "name",
description: "Name of the package you want to configure",
},
subcommands: [
{
name: "@adonisjs/auth",
description: "Trigger auto configuring auth package",
},
{
name: "@adonisjs/shield",
description: "Trigger auto configuring shield package",
},
{
name: "@adonisjs/redis",
description: "Trigger auto configuring redis package",
},
{
name: "@adonisjs/mail",
description: "Trigger auto configuring mail package",
},
],
},
{
name: "repl",
description: "Start a new REPL session",
},
{
name: "serve",
description:
"Start the AdonisJS HTTP server, along with the file watcher. Also starts the webpack dev server when webpack encore is installed",
options: [
{
name: "--assets",
description:
"Start webpack dev server when encore is installed",
},
{
name: "--no-assets",
description: "Disable webpack dev server",
},
{
name: ["-w", "--watch"],
description:
"Watch for file changes and re-start the HTTP server on change",
},
{
name: ["-p", "--poll"],
description:
"Detect file changes by polling files instead of listening to filesystem events",
},
{
name: "--node-args",
requiresSeparator: true,
insertValue: "--node-args='{cursor}'",
description: "CLI options to pass to the node command line",
},
{
name: "--encore-args",
requiresSeparator: true,
insertValue: "--encore-args='{cursor}'",
description:
"CLI options to pass to the encore command line",
},
],
},
{
name: "db:seed",
description: "Execute database seeder files",
options: [
{
name: ["-c", "--connection"],
description:
"Define a custom database connection for the seeders",
args: {
name: "name",
},
},
{
name: ["-i", "--interactive"],
description: "Run seeders in interactive mode",
},
{
name: ["-f", "--files"],
args: {
name: "file",
isVariadic: true,
template: "filepaths",
},
description:
"Define a custom set of seeders files names to run",
},
],
},
{
name: "dump:rcfile",
description:
"Dump contents of .adonisrc.json file along with defaults",
},
{
name: "generate:key",
description: "Generate a new APP_KEY secret",
},
{
name: "generate:manifest",
description:
"Generate ace commands manifest file. Manifest file speeds up commands lookup",
},
{
name: "list:routes",
description: "List application routes",
},
{
name: "make:command",
description: "Make a new ace command",
},
{
name: "make:controller",
description: "Make a new HTTP controller",
args: {
name: "name",
description: "Name of the controller class",
},
options: [
{
name: ["-r", "--resource"],
description:
"Add resourceful methods to the controller class",
},
{
name: ["-e", "--exact"],
description:
"Create the controller with the exact name as provided",
},
],
},
{
name: "make:exception",
description: "Make a new custom exception class",
},
{
name: "make:listener",
description: "Make a new event listener class",
},
{
name: "make:mailer",
description: "Make a new mailer class",
args: {
name: "name",
description: "Mailer class name",
},
},
{
name: "make:middleware",
description: "Make a new middleware",
args: {
name: "name",
description: "Middleware class name",
},
},
{
name: "make:migration",
description: "Make a new migration file",
args: {
name: "name",
description: "Name of the migration file",
},
options: [
{
name: "--connection",
description:
"The connection flag is used to lookup the directory for the migration file",
args: {
name: "name",
},
},
{
name: "--folder",
description: "Pre-select a migration directory",
args: {
name: "name",
template: "filepaths",
},
},
{
name: "--create",
description:
"Define the table name for creating a new table",
args: {
name: "name",
},
},
{
name: "--table",
description:
"Define the table name for altering an existing table",
args: {
name: "name",
},
},
],
},
{
name: "make:model",
description: "Make a new Lucid model",
args: {
name: "name",
description: "Name of the model class",
},
options: [
{
name: ["-m", "--migration"],
description: "Generate the migration for the model",
},
{
name: ["-c", "--controller"],
description: "Generate the controller for the model",
},
],
},
{
name: "make:prldfile",
description: "Make a new preload file",
subcommands: [
{
name: "events",
description: "Make events preload file",
},
],
},
{
name: "make:provider",
description: "Make a new provider class",
},
{
name: "make:seeder",
description: "Make a new Seeder file",
args: {
name: "name",
description: "Name of the seeder class",
},
},
{
name: "make:validator",
description: "Make a new validator",
args: {
name: "name",
description: "Name of the validator class",
},
options: [
{
name: ["-e", "--exact"],
description:
"Create the validator with the exact name as provided",
},
],
},
{
name: "make:view",
description: "Make a new view template",
args: {
name: "name",
description: "Name of the view",
},
options: [
{
name: ["-e", "--exact"],
description:
"Create the template file with the exact name as provided",
},
],
},
{
name: "migration:rollback",
description: "Rollback migrations to a given batch number",
options: [
{
name: ["-c", "--connection"],
description: "Define a custom database connection",
args: {
name: "name",
},
},
{
name: "--force",
description:
"Explicitly force to run migrations in production",
isDangerous: true,
},
{
name: "--dry-run",
description:
"Print SQL queries, instead of running the migrations",
},
{
name: "--batch",
args: {
name: "number",
description: "Use 0 to rollback to initial state",
},
description: "Define custom batch number for rollback",
},
],
},
{
name: "migration:run",
description: "Run pending migrations",
options: [
{
name: ["-c", "--connection"],
description: "Define a custom database connection",
args: {
name: "name",
},
},
{
name: "--force",
description:
"Explicitly force to run migrations in production",
isDangerous: true,
},
{
name: "--dry-run",
description:
"Print SQL queries, instead of running the migrations",
},
],
},
{
name: "migration:status",
description: "Check migrations current status",
},
],
},
],
};
}
},
};
export default completionSpec;