@@ -14,16 +14,64 @@ export default Blueprint.extend({
14
14
description : '' ,
15
15
16
16
availableOptions : [
17
- { name : 'flat' , type : Boolean } ,
18
- { name : 'inline-template' , type : Boolean , aliases : [ 'it' ] } ,
19
- { name : 'inline-style' , type : Boolean , aliases : [ 'is' ] } ,
20
- { name : 'prefix' , type : String , default : null } ,
21
- { name : 'spec' , type : Boolean } ,
22
- { name : 'view-encapsulation' , type : String , aliases : [ 've' ] } ,
23
- { name : 'change-detection' , type : String , aliases : [ 'cd' ] } ,
24
- { name : 'skip-import' , type : Boolean , default : false } ,
25
- { name : 'module' , type : String , aliases : [ 'm' ] } ,
26
- { name : 'export' , type : Boolean , default : false }
17
+ {
18
+ name : 'flat' ,
19
+ type : Boolean ,
20
+ description : 'Flag to indicate if a dir is created.'
21
+ } ,
22
+ {
23
+ name : 'inline-template' ,
24
+ type : Boolean ,
25
+ aliases : [ 'it' ] ,
26
+ description : 'Specifies if the template will be in the ts file.'
27
+ } ,
28
+ {
29
+ name : 'inline-style' ,
30
+ type : Boolean ,
31
+ aliases : [ 'is' ] ,
32
+ description : 'Specifies if the style will be in the ts file.'
33
+ } ,
34
+ {
35
+ name : 'prefix' ,
36
+ type : String ,
37
+ default : null ,
38
+ description : 'Specifies whether to use the prefix.'
39
+ } ,
40
+ {
41
+ name : 'spec' ,
42
+ type : Boolean ,
43
+ description : 'Specifies if a spec file is generated.'
44
+ } ,
45
+ {
46
+ name : 'view-encapsulation' ,
47
+ type : String ,
48
+ aliases : [ 've' ] ,
49
+ description : 'Specifies the view encapsulation strategy.'
50
+ } ,
51
+ {
52
+ name : 'change-detection' ,
53
+ type : String ,
54
+ aliases : [ 'cd' ] ,
55
+ description : 'Specifies the change detection strategy.'
56
+ } ,
57
+ {
58
+ name : 'skip-import' ,
59
+ type : Boolean ,
60
+ default : false ,
61
+ description : 'Allows for skipping the module import.'
62
+ } ,
63
+ {
64
+ name : 'module' ,
65
+ type : String ,
66
+ aliases : [ 'm' ] ,
67
+ description : 'Allows specification of the declaring module.'
68
+ } ,
69
+ {
70
+ name : 'export' ,
71
+ type : Boolean ,
72
+ default : false ,
73
+ description : 'Specifies if declaring module exports the component.'
74
+ }
27
75
] ,
28
76
29
77
beforeInstall : function ( options : any ) {
0 commit comments