You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.option('-t --typeName <string>','name of the generated enumeration type',DEFAULT_OPTIONS.typeName)
17
-
.option('-f --fileName <string>','name of the generated file',DEFAULT_OPTIONS.fileName)
18
-
.option(
19
-
'-d --delimiter <Delimiter>',
20
-
`delimiter which is used to generate the types and name properties (${Object.values(Delimiter).join(',')})`,
21
-
DEFAULT_OPTIONS.delimiter
22
-
)
23
-
.option('-p --prefix <string>','prefix for the generated svg constants',DEFAULT_OPTIONS.prefix)
24
-
.option('-i --interfaceName <string>','name for the generated interface',DEFAULT_OPTIONS.interfaceName)
25
-
.option('-s --srcFiles <value>','name of the source directory',collect,[])
26
-
.option('-o --outputDirectory <string>','name of the output directory',DEFAULT_OPTIONS.outputDirectory)
27
-
.option(
28
-
'--optimizeForLazyLoading <boolean>',
29
-
'optimize the output for lazyloading',
30
-
DEFAULT_OPTIONS.optimizeForLazyLoading
31
-
)
32
-
.option(
33
-
'--modelFileName <string>',
34
-
'FileName of the model file (only necessary when optimizeForLazyLoading option is enabled)',
35
-
DEFAULT_OPTIONS.modelFileName
36
-
)
37
-
.option(
38
-
'--iconsFolderName <string>',
39
-
'Name of the folder the icons will be generated to (only necessary when optimizeForLazyLoading option is enabled)',
40
-
DEFAULT_OPTIONS.iconsFolderName
41
-
)
42
-
.option(
43
-
'--additionalModelOutputPath <string>',
44
-
'Additional outputpath for the models file (only helpful when optimizeForLazyLoading option is enabled)',
45
-
DEFAULT_OPTIONS.additionalModelOutputPath
46
-
)
47
-
.option(
48
-
'--preCompileSources <boolean>',
49
-
'Tells if the sources should be precompiled with the TypeScript compiler. If true, you will only end up with d.ts and js files (only necessary when optimizeForLazyLoading option is enabled)',
.option('-t --typeName <string>','name of the generated enumeration type',DEFAULT_OPTIONS.typeName)
13
+
.option('-f --fileName <string>','name of the generated file',DEFAULT_OPTIONS.fileName)
14
+
.option(
15
+
'-d --delimiter <Delimiter>',
16
+
`delimiter which is used to generate the types and name properties (${Object.values(Delimiter).join(',')})`,
17
+
DEFAULT_OPTIONS.delimiter
18
+
)
19
+
.option('-p --prefix <string>','prefix for the generated svg constants',DEFAULT_OPTIONS.prefix)
20
+
.option('-i --interfaceName <string>','name for the generated interface',DEFAULT_OPTIONS.interfaceName)
21
+
.option('-s --srcFiles <value>','name of the source directory',collect,[])
22
+
.option('-o --outputDirectory <string>','name of the output directory',DEFAULT_OPTIONS.outputDirectory)
23
+
.option(
24
+
'--svgoConfig <any>',
25
+
'Path to svgo configuration JSON or inline svgo configuration object',
26
+
DEFAULT_OPTIONS.svgoConfig
27
+
)
28
+
.option(
29
+
'--optimizeForLazyLoading <boolean>',
30
+
'optimize the output for lazyloading',
31
+
DEFAULT_OPTIONS.optimizeForLazyLoading
32
+
)
33
+
.option(
34
+
'--modelFileName <string>',
35
+
'FileName of the model file (only necessary when optimizeForLazyLoading option is enabled)',
36
+
DEFAULT_OPTIONS.modelFileName
37
+
)
38
+
.option(
39
+
'--iconsFolderName <string>',
40
+
'Name of the folder the icons will be generated to (only necessary when optimizeForLazyLoading option is enabled)',
41
+
DEFAULT_OPTIONS.iconsFolderName
42
+
)
43
+
.option(
44
+
'--additionalModelOutputPath <string>',
45
+
'Additional outputpath for the models file (only helpful when optimizeForLazyLoading option is enabled)',
46
+
DEFAULT_OPTIONS.additionalModelOutputPath
47
+
)
48
+
.option(
49
+
'--preCompileSources <boolean>',
50
+
'Tells if the sources should be precompiled with the TypeScript compiler. If true, you will only end up with d.ts and js files (only necessary when optimizeForLazyLoading option is enabled)',
0 commit comments