Skip to content

Commit 26435cf

Browse files
committed
chore: mark some more options as sensitive
1 parent 14901e2 commit 26435cf

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/options.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ export class Options {
4141

4242
private get commonOptions(): IDictionary<IDashedOption> {
4343
return {
44-
ipa: { type: OptionType.String, hasSensitiveValue: false },
45-
frameworkPath: { type: OptionType.String, hasSensitiveValue: false },
44+
ipa: { type: OptionType.String, hasSensitiveValue: true },
45+
frameworkPath: { type: OptionType.String, hasSensitiveValue: true },
4646
frameworkName: { type: OptionType.String, hasSensitiveValue: false },
4747
framework: { type: OptionType.String, hasSensitiveValue: false },
4848
frameworkVersion: { type: OptionType.String, hasSensitiveValue: false },
@@ -52,16 +52,16 @@ export class Options {
5252
env: { type: OptionType.Object, hasSensitiveValue: false },
5353
production: { type: OptionType.Boolean, hasSensitiveValue: false },
5454
debugTransport: { type: OptionType.Boolean, hasSensitiveValue: false },
55-
keyStorePath: { type: OptionType.String, hasSensitiveValue: false },
55+
keyStorePath: { type: OptionType.String, hasSensitiveValue: true },
5656
keyStorePassword: { type: OptionType.String, hasSensitiveValue: true },
5757
keyStoreAlias: { type: OptionType.String, hasSensitiveValue: true },
5858
keyStoreAliasPassword: { type: OptionType.String, hasSensitiveValue: true },
5959
ignoreScripts: { type: OptionType.Boolean, hasSensitiveValue: false },
6060
disableNpmInstall: { type: OptionType.Boolean, hasSensitiveValue: false },
6161
compileSdk: { type: OptionType.Number, hasSensitiveValue: false },
6262
port: { type: OptionType.Number, hasSensitiveValue: false },
63-
copyTo: { type: OptionType.String, hasSensitiveValue: false },
64-
platformTemplate: { type: OptionType.String, hasSensitiveValue: false },
63+
copyTo: { type: OptionType.String, hasSensitiveValue: true },
64+
platformTemplate: { type: OptionType.String, hasSensitiveValue: true },
6565
js: { type: OptionType.Boolean, hasSensitiveValue: false },
6666
javascript: { type: OptionType.Boolean, hasSensitiveValue: false },
6767
ng: { type: OptionType.Boolean, hasSensitiveValue: false },
@@ -94,7 +94,7 @@ export class Options {
9494
debug: { type: OptionType.Boolean, alias: "d", hasSensitiveValue: false },
9595
timeout: { type: OptionType.String, hasSensitiveValue: false },
9696
device: { type: OptionType.String, hasSensitiveValue: true },
97-
availableDevices: { type: OptionType.Boolean, hasSensitiveValue: true },
97+
availableDevices: { type: OptionType.Boolean, hasSensitiveValue: false },
9898
appid: { type: OptionType.String, hasSensitiveValue: true },
9999
geny: { type: OptionType.String, hasSensitiveValue: true },
100100
debugBrk: { type: OptionType.Boolean, hasSensitiveValue: false },

0 commit comments

Comments
 (0)