File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ export interface ExtractI18nBuilderOptions {
38
38
i18nLocale : string ;
39
39
outputPath ?: string ;
40
40
outFile ?: string ;
41
+ progress ?: boolean ;
41
42
}
42
43
43
44
export class ExtractI18nBuilder implements Builder < ExtractI18nBuilderOptions > {
@@ -92,6 +93,7 @@ export class ExtractI18nBuilder implements Builder<ExtractI18nBuilderOptions> {
92
93
i18nFormat : options . i18nFormat ,
93
94
i18nFile : outFile ,
94
95
aot : true ,
96
+ progress : options . progress ,
95
97
assets : [ ] ,
96
98
scripts : [ ] ,
97
99
styles : [ ] ,
Original file line number Diff line number Diff line change 24
24
"type" : " string" ,
25
25
"description" : " Specifies the source language of the application."
26
26
},
27
+ "progress" : {
28
+ "type" : " boolean" ,
29
+ "description" : " Log progress to the console." ,
30
+ "default" : true
31
+ },
27
32
"outputPath" : {
28
33
"type" : " string" ,
29
34
"description" : " Path where output will be placed."
You can’t perform that action at this time.
0 commit comments