@@ -12,9 +12,9 @@ export class Options {
12
12
verbose : { type : OptionType . Boolean , alias : "v" } ,
13
13
version : { type : OptionType . Boolean } ,
14
14
help : { type : OptionType . Boolean , alias : "h" } ,
15
- profileDir : { type : OptionType . String } ,
15
+ profileDir : { type : OptionType . String , private : true } ,
16
16
analyticsClient : { type : OptionType . String } ,
17
- path : { type : OptionType . String , alias : "p" } ,
17
+ path : { type : OptionType . String , alias : "p" , private : true } ,
18
18
// This will parse all non-hyphenated values as strings.
19
19
_ : { type : OptionType . String }
20
20
} ;
@@ -47,14 +47,14 @@ export class Options {
47
47
framework : { type : OptionType . String } ,
48
48
frameworkVersion : { type : OptionType . String } ,
49
49
forDevice : { type : OptionType . Boolean } ,
50
- provision : { type : OptionType . Object } ,
50
+ provision : { type : OptionType . Object , private : true } ,
51
51
client : { type : OptionType . Boolean , default : true } ,
52
52
env : { type : OptionType . Object } ,
53
53
production : { type : OptionType . Boolean } ,
54
54
debugTransport : { type : OptionType . Boolean } ,
55
55
keyStorePath : { type : OptionType . String } ,
56
56
keyStorePassword : { type : OptionType . String , } ,
57
- keyStoreAlias : { type : OptionType . String } ,
57
+ keyStoreAlias : { type : OptionType . String , private : true } ,
58
58
keyStoreAliasPassword : { type : OptionType . String } ,
59
59
ignoreScripts : { type : OptionType . Boolean } ,
60
60
disableNpmInstall : { type : OptionType . Boolean } ,
@@ -75,46 +75,48 @@ export class Options {
75
75
androidTypings : { type : OptionType . Boolean } ,
76
76
bundle : { type : OptionType . String } ,
77
77
all : { type : OptionType . Boolean } ,
78
- teamId : { type : OptionType . Object } ,
78
+ teamId : { type : OptionType . Object , private : true } ,
79
79
syncAllFiles : { type : OptionType . Boolean , default : false } ,
80
80
chrome : { type : OptionType . Boolean } ,
81
81
inspector : { type : OptionType . Boolean } ,
82
82
clean : { type : OptionType . Boolean } ,
83
83
watch : { type : OptionType . Boolean , default : true } ,
84
84
background : { type : OptionType . String } ,
85
- username : { type : OptionType . String } ,
85
+ username : { type : OptionType . String , private : true } ,
86
86
pluginName : { type : OptionType . String } ,
87
87
hmr : { type : OptionType . Boolean } ,
88
88
collection : { type : OptionType . String , alias : "c" } ,
89
89
json : { type : OptionType . Boolean } ,
90
- avd : { type : OptionType . String } ,
90
+ avd : { type : OptionType . String , private : true } ,
91
+ // check not used
91
92
config : { type : OptionType . Array } ,
92
93
insecure : { type : OptionType . Boolean , alias : "k" } ,
93
94
debug : { type : OptionType . Boolean , alias : "d" } ,
94
95
timeout : { type : OptionType . String } ,
95
- device : { type : OptionType . String } ,
96
- availableDevices : { type : OptionType . Boolean } ,
97
- appid : { type : OptionType . String } ,
98
- geny : { type : OptionType . String } ,
96
+ device : { type : OptionType . String , private : true } ,
97
+ availableDevices : { type : OptionType . Boolean , private : true } ,
98
+ appid : { type : OptionType . String , private : true } ,
99
+ geny : { type : OptionType . String , private : true } ,
99
100
debugBrk : { type : OptionType . Boolean } ,
100
101
debugPort : { type : OptionType . Number } ,
101
102
start : { type : OptionType . Boolean } ,
102
103
stop : { type : OptionType . Boolean } ,
103
- ddi : { type : OptionType . String } , // the path to developer disk image
104
+ ddi : { type : OptionType . String , private : true } , // the path to developer disk image
104
105
justlaunch : { type : OptionType . Boolean } ,
105
- file : { type : OptionType . String } ,
106
+ file : { type : OptionType . String , private : true } ,
106
107
force : { type : OptionType . Boolean , alias : "f" } ,
108
+ // remove legacy
107
109
companion : { type : OptionType . Boolean } ,
108
110
emulator : { type : OptionType . Boolean } ,
109
111
sdk : { type : OptionType . String } ,
110
- template : { type : OptionType . String } ,
111
- certificate : { type : OptionType . String } ,
112
+ template : { type : OptionType . String , private : true } ,
113
+ certificate : { type : OptionType . String , private : true } ,
112
114
certificatePassword : { type : OptionType . String } ,
113
115
release : { type : OptionType . Boolean , alias : "r" } ,
114
- var : { type : OptionType . Object } ,
116
+ var : { type : OptionType . Object , private : true } ,
115
117
default : { type : OptionType . Boolean } ,
116
118
count : { type : OptionType . Number } ,
117
- analyticsLogFile : { type : OptionType . String } ,
119
+ analyticsLogFile : { type : OptionType . String , private : true } ,
118
120
hooks : { type : OptionType . Boolean , default : true } ,
119
121
link : { type : OptionType . Boolean , default : false } ,
120
122
aab : { type : OptionType . Boolean }
0 commit comments