forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate.json
933 lines (933 loc) · 26.2 KB
/
generate.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
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
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
{
"name": "generate",
"command": "ng generate <schematic>",
"shortDescription": "Generates and/or modifies files based on a schematic.",
"aliases": [
"g"
],
"deprecated": false,
"options": [
{
"name": "defaults",
"type": "boolean",
"default": false,
"description": "Disable interactive input prompts for options with a default."
},
{
"name": "dry-run",
"type": "boolean",
"default": false,
"description": "Run through and reports activity without writing out results."
},
{
"name": "force",
"type": "boolean",
"default": false,
"description": "Force overwriting of existing files."
},
{
"name": "help",
"type": "boolean",
"description": "Shows a help message for this command in the console."
},
{
"name": "interactive",
"type": "boolean",
"default": true,
"description": "Enable interactive input prompts."
},
{
"name": "schematic",
"type": "string",
"description": "The [collection:schematic] to run.",
"positional": 0
}
],
"subcommands": [
{
"name": "app-shell",
"command": "app-shell",
"shortDescription": "Generates an application shell for running a server-side version of an app.",
"options": [
{
"name": "app-id",
"type": "string",
"default": "serverApp",
"description": "The application ID to use in withServerTransition()."
},
{
"name": "main",
"type": "string",
"default": "main.server.ts",
"description": "The name of the main entry-point file."
},
{
"name": "project",
"type": "string",
"description": "The name of the related client app."
},
{
"name": "root-module-class-name",
"type": "string",
"default": "AppServerModule",
"description": "The name of the root module class."
},
{
"name": "root-module-file-name",
"type": "string",
"default": "app.server.module.ts",
"description": "The name of the root module file"
},
{
"name": "route",
"type": "string",
"default": "shell",
"description": "Route path used to produce the application shell."
}
],
"aliases": [],
"deprecated": false
},
{
"name": "application",
"command": "application [name]",
"shortDescription": "Generates a new basic application definition in the \"projects\" subfolder of the workspace.",
"options": [
{
"name": "inline-style",
"type": "boolean",
"aliases": [
"s"
],
"description": "Include styles inline in the root component.ts file. Only CSS styles can be included inline. Default is false, meaning that an external styles file is created and referenced in the root component.ts file."
},
{
"name": "inline-template",
"type": "boolean",
"aliases": [
"t"
],
"description": "Include template inline in the root component.ts file. Default is false, meaning that an external template file is created and referenced in the root component.ts file. "
},
{
"name": "minimal",
"type": "boolean",
"default": false,
"description": "Create a bare-bones project without any testing frameworks. (Use for learning purposes only.)"
},
{
"name": "name",
"type": "string",
"description": "The name of the new application.",
"positional": 0
},
{
"name": "prefix",
"type": "string",
"aliases": [
"p"
],
"default": "app",
"description": "A prefix to apply to generated selectors."
},
{
"name": "project-root",
"type": "string",
"description": "The root directory of the new application."
},
{
"name": "routing",
"type": "boolean",
"default": false,
"description": "Create a routing NgModule."
},
{
"name": "skip-install",
"type": "boolean",
"default": false,
"description": "Skip installing dependency packages."
},
{
"name": "skip-package-json",
"type": "boolean",
"default": false,
"description": "Do not add dependencies to the \"package.json\" file."
},
{
"name": "skip-tests",
"type": "boolean",
"aliases": [
"S"
],
"default": false,
"description": "Do not create \"spec.ts\" test files for the application."
},
{
"name": "strict",
"type": "boolean",
"default": true,
"description": "Creates an application with stricter bundle budgets settings."
},
{
"name": "style",
"type": "string",
"default": "css",
"enum": [
"css",
"scss",
"sass",
"less"
],
"description": "The file extension or preprocessor to use for style files."
},
{
"name": "view-encapsulation",
"type": "string",
"enum": [
"Emulated",
"None",
"ShadowDom"
],
"description": "The view encapsulation strategy to use in the new application."
}
],
"aliases": [
"app"
],
"deprecated": false
},
{
"name": "class",
"command": "class [name]",
"shortDescription": "Creates a new, generic class definition in the given project.",
"options": [
{
"name": "name",
"type": "string",
"description": "The name of the new class.",
"positional": 0
},
{
"name": "project",
"type": "string",
"description": "The name of the project."
},
{
"name": "skip-tests",
"type": "boolean",
"default": false,
"description": "Do not create \"spec.ts\" test files for the new class."
},
{
"name": "type",
"type": "string",
"description": "Adds a developer-defined type to the filename, in the format \"name.type.ts\"."
}
],
"aliases": [
"cl"
],
"deprecated": false
},
{
"name": "component",
"command": "component [name]",
"shortDescription": "Creates a new, generic component definition in the given project.",
"options": [
{
"name": "change-detection",
"type": "string",
"aliases": [
"c"
],
"default": "Default",
"enum": [
"Default",
"OnPush"
],
"description": "The change detection strategy to use in the new component."
},
{
"name": "display-block",
"type": "boolean",
"aliases": [
"b"
],
"default": false,
"description": "Specifies if the style will contain `:host { display: block; }`."
},
{
"name": "export",
"type": "boolean",
"default": false,
"description": "The declaring NgModule exports this component."
},
{
"name": "flat",
"type": "boolean",
"default": false,
"description": "Create the new files at the top level of the current project."
},
{
"name": "inline-style",
"type": "boolean",
"aliases": [
"s"
],
"default": false,
"description": "Include styles inline in the component.ts file. Only CSS styles can be included inline. By default, an external styles file is created and referenced in the component.ts file."
},
{
"name": "inline-template",
"type": "boolean",
"aliases": [
"t"
],
"default": false,
"description": "Include template inline in the component.ts file. By default, an external template file is created and referenced in the component.ts file."
},
{
"name": "module",
"type": "string",
"aliases": [
"m"
],
"description": "The declaring NgModule."
},
{
"name": "name",
"type": "string",
"description": "The name of the component.",
"positional": 0
},
{
"name": "prefix",
"type": "string",
"aliases": [
"p"
],
"description": "The prefix to apply to the generated component selector."
},
{
"name": "project",
"type": "string",
"description": "The name of the project."
},
{
"name": "selector",
"type": "string",
"description": "The HTML selector to use for this component."
},
{
"name": "skip-import",
"type": "boolean",
"default": false,
"description": "Do not import this component into the owning NgModule."
},
{
"name": "skip-selector",
"type": "boolean",
"default": false,
"description": "Specifies if the component should have a selector or not."
},
{
"name": "skip-tests",
"type": "boolean",
"default": false,
"description": "Do not create \"spec.ts\" test files for the new component."
},
{
"name": "standalone",
"type": "boolean",
"default": false,
"description": "Whether the generated component is standalone."
},
{
"name": "style",
"type": "string",
"default": "css",
"enum": [
"css",
"scss",
"sass",
"less",
"none"
],
"description": "The file extension or preprocessor to use for style files, or 'none' to skip generating the style file."
},
{
"name": "type",
"type": "string",
"default": "Component",
"description": "Adds a developer-defined type to the filename, in the format \"name.type.ts\"."
},
{
"name": "view-encapsulation",
"type": "string",
"aliases": [
"v"
],
"enum": [
"Emulated",
"None",
"ShadowDom"
],
"description": "The view encapsulation strategy to use in the new component."
}
],
"aliases": [
"c"
],
"deprecated": false
},
{
"name": "config",
"command": "config [type]",
"shortDescription": "Generates a configuration file in the given project.",
"options": [
{
"name": "project",
"type": "string",
"description": "The name of the project."
},
{
"name": "type",
"type": "string",
"enum": [
"karma",
"browserslist"
],
"description": "Specifies which type of configuration file to create.",
"positional": 0
}
],
"aliases": [],
"deprecated": false
},
{
"name": "directive",
"command": "directive [name]",
"shortDescription": "Creates a new, generic directive definition in the given project.",
"options": [
{
"name": "export",
"type": "boolean",
"default": false,
"description": "The declaring NgModule exports this directive."
},
{
"name": "flat",
"type": "boolean",
"default": true,
"description": "When true (the default), creates the new files at the top level of the current project."
},
{
"name": "module",
"type": "string",
"aliases": [
"m"
],
"description": "The declaring NgModule."
},
{
"name": "name",
"type": "string",
"description": "The name of the new directive.",
"positional": 0
},
{
"name": "prefix",
"type": "string",
"aliases": [
"p"
],
"description": "A prefix to apply to generated selectors."
},
{
"name": "project",
"type": "string",
"description": "The name of the project."
},
{
"name": "selector",
"type": "string",
"description": "The HTML selector to use for this directive."
},
{
"name": "skip-import",
"type": "boolean",
"default": false,
"description": "Do not import this directive into the owning NgModule."
},
{
"name": "skip-tests",
"type": "boolean",
"default": false,
"description": "Do not create \"spec.ts\" test files for the new class."
},
{
"name": "standalone",
"type": "boolean",
"default": false,
"description": "Whether the generated directive is standalone."
}
],
"aliases": [
"d"
],
"deprecated": false
},
{
"name": "enum",
"command": "enum [name]",
"shortDescription": "Generates a new, generic enum definition in the given project.",
"options": [
{
"name": "name",
"type": "string",
"description": "The name of the enum.",
"positional": 0
},
{
"name": "project",
"type": "string",
"description": "The name of the project in which to create the enum. Default is the configured default project for the workspace."
},
{
"name": "type",
"type": "string",
"description": "Adds a developer-defined type to the filename, in the format \"name.type.ts\"."
}
],
"aliases": [
"e"
],
"deprecated": false
},
{
"name": "environments",
"command": "environments",
"shortDescription": "Generates and configures environment files for a project.",
"options": [
{
"name": "project",
"type": "string",
"description": "The name of the project."
}
],
"aliases": [],
"deprecated": false
},
{
"name": "guard",
"command": "guard [name]",
"shortDescription": "Generates a new, generic route guard definition in the given project.",
"options": [
{
"name": "flat",
"type": "boolean",
"default": true,
"description": "When true (the default), creates the new files at the top level of the current project."
},
{
"name": "functional",
"type": "boolean",
"default": false,
"description": "Specifies whether to generate a guard as a function."
},
{
"name": "implements",
"type": "array",
"aliases": [
"guardType"
],
"description": "Specifies which type of guard to create."
},
{
"name": "name",
"type": "string",
"description": "The name of the new route guard.",
"positional": 0
},
{
"name": "project",
"type": "string",
"description": "The name of the project."
},
{
"name": "skip-tests",
"type": "boolean",
"default": false,
"description": "Do not create \"spec.ts\" test files for the new guard."
}
],
"aliases": [
"g"
],
"deprecated": false
},
{
"name": "interceptor",
"command": "interceptor [name]",
"shortDescription": "Creates a new, generic interceptor definition in the given project.",
"options": [
{
"name": "flat",
"type": "boolean",
"default": true,
"description": "When true (the default), creates files at the top level of the project."
},
{
"name": "functional",
"type": "boolean",
"default": false,
"description": "Creates the interceptor as a `HttpInterceptorFn`."
},
{
"name": "name",
"type": "string",
"description": "The name of the interceptor.",
"positional": 0
},
{
"name": "project",
"type": "string",
"description": "The name of the project."
},
{
"name": "skip-tests",
"type": "boolean",
"default": false,
"description": "Do not create \"spec.ts\" test files for the new interceptor."
}
],
"aliases": [],
"deprecated": false
},
{
"name": "interface",
"command": "interface [name] [type]",
"shortDescription": "Creates a new, generic interface definition in the given project.",
"options": [
{
"name": "name",
"type": "string",
"description": "The name of the interface.",
"positional": 0
},
{
"name": "prefix",
"type": "string",
"description": "A prefix to apply to generated selectors."
},
{
"name": "project",
"type": "string",
"description": "The name of the project."
},
{
"name": "type",
"type": "string",
"description": "Adds a developer-defined type to the filename, in the format \"name.type.ts\".",
"positional": 1
}
],
"aliases": [
"i"
],
"deprecated": false
},
{
"name": "library",
"command": "library [name]",
"shortDescription": "Creates a new, generic library project in the current workspace.",
"options": [
{
"name": "entry-file",
"type": "string",
"default": "public-api",
"description": "The path at which to create the library's public API file, relative to the workspace root."
},
{
"name": "name",
"type": "string",
"description": "The name of the library.",
"positional": 0
},
{
"name": "prefix",
"type": "string",
"aliases": [
"p"
],
"default": "lib",
"description": "A prefix to apply to generated selectors."
},
{
"name": "project-root",
"type": "string",
"description": "The root directory of the new library."
},
{
"name": "skip-install",
"type": "boolean",
"default": false,
"description": "Do not install dependency packages."
},
{
"name": "skip-package-json",
"type": "boolean",
"default": false,
"description": "Do not add dependencies to the \"package.json\" file. "
},
{
"name": "skip-ts-config",
"type": "boolean",
"default": false,
"description": "Do not update \"tsconfig.json\" to add a path mapping for the new library. The path mapping is needed to use the library in an app, but can be disabled here to simplify development."
}
],
"aliases": [
"lib"
],
"deprecated": false
},
{
"name": "module",
"command": "module [name]",
"shortDescription": "Creates a new, generic NgModule definition in the given project.",
"options": [
{
"name": "flat",
"type": "boolean",
"default": false,
"description": "Create the new files at the top level of the current project root. "
},
{
"name": "module",
"type": "string",
"aliases": [
"m"
],
"description": "The declaring NgModule."
},
{
"name": "name",
"type": "string",
"description": "The name of the NgModule.",
"positional": 0
},
{
"name": "project",
"type": "string",
"description": "The name of the project."
},
{
"name": "route",
"type": "string",
"description": "The route path for a lazy-loaded module. When supplied, creates a component in the new module, and adds the route to that component in the `Routes` array declared in the module provided in the `--module` option."
},
{
"name": "routing",
"type": "boolean",
"default": false,
"description": "Create a routing module."
},
{
"name": "routing-scope",
"type": "string",
"default": "Child",
"enum": [
"Child",
"Root"
],
"description": "The scope for the new routing module."
}
],
"aliases": [
"m"
],
"deprecated": false
},
{
"name": "pipe",
"command": "pipe [name]",
"shortDescription": "Creates a new, generic pipe definition in the given project.",
"options": [
{
"name": "export",
"type": "boolean",
"default": false,
"description": "The declaring NgModule exports this pipe."
},
{
"name": "flat",
"type": "boolean",
"default": true,
"description": "When true (the default) creates files at the top level of the project."
},
{
"name": "module",
"type": "string",
"aliases": [
"m"
],
"description": "The declaring NgModule."
},
{
"name": "name",
"type": "string",
"description": "The name of the pipe.",
"positional": 0
},
{
"name": "project",
"type": "string",
"description": "The name of the project."
},
{
"name": "skip-import",
"type": "boolean",
"default": false,
"description": "Do not import this pipe into the owning NgModule."
},
{
"name": "skip-tests",
"type": "boolean",
"default": false,
"description": "Do not create \"spec.ts\" test files for the new pipe."
},
{
"name": "standalone",
"type": "boolean",
"default": false,
"description": "Whether the generated pipe is standalone."
}
],
"aliases": [
"p"
],
"deprecated": false
},
{
"name": "resolver",
"command": "resolver [name]",
"shortDescription": "Generates a new, generic resolver definition in the given project.",
"options": [
{
"name": "flat",
"type": "boolean",
"default": true,
"description": "When true (the default), creates the new files at the top level of the current project."
},
{
"name": "functional",
"type": "boolean",
"default": false,
"description": "Creates the resolver as a `ResolveFn`."
},
{
"name": "name",
"type": "string",
"description": "The name of the new resolver.",
"positional": 0
},
{
"name": "project",
"type": "string",
"description": "The name of the project."
},
{
"name": "skip-tests",
"type": "boolean",
"default": false,
"description": "Do not create \"spec.ts\" test files for the new resolver."
}
],
"aliases": [
"r"
],
"deprecated": false
},
{
"name": "service",
"command": "service [name]",
"shortDescription": "Creates a new, generic service definition in the given project.",
"options": [
{
"name": "flat",
"type": "boolean",
"default": true,
"description": "When true (the default), creates files at the top level of the project."
},
{
"name": "name",
"type": "string",
"description": "The name of the service.",
"positional": 0
},
{
"name": "project",
"type": "string",
"description": "The name of the project."
},
{
"name": "skip-tests",
"type": "boolean",
"default": false,
"description": "Do not create \"spec.ts\" test files for the new service."
}
],
"aliases": [
"s"
],
"deprecated": false
},
{
"name": "service-worker",
"command": "service-worker",
"shortDescription": "Pass this schematic to the \"run\" command to create a service worker",
"options": [
{
"name": "project",
"type": "string",
"description": "The name of the project."
},
{
"name": "target",
"type": "string",
"default": "build",
"description": "The target to apply service worker to."
}
],
"aliases": [],
"deprecated": false
},
{
"name": "web-worker",
"command": "web-worker [name]",
"shortDescription": "Creates a new, generic web worker definition in the given project.",
"options": [
{
"name": "name",
"type": "string",
"description": "The name of the worker.",
"positional": 0
},
{
"name": "project",
"type": "string",
"description": "The name of the project."
},
{
"name": "snippet",
"type": "boolean",
"default": true,
"description": "Add a worker creation snippet in a sibling file of the same name."
}
],
"aliases": [],
"deprecated": false
}
]
}