@devicecloud.dev/dcd 3.6.3 → 3.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -85,26 +85,24 @@ class Cloud extends core_1.Command {
85
85
  let output = null;
86
86
  try {
87
87
  const { args, flags, raw } = await this.parse(Cloud);
88
- // Log the full command that was run
89
- const commandParts = ['dcd cloud'];
90
- if (args.firstFile)
91
- commandParts.push(escapeShellValue(args.firstFile));
92
- if (args.secondFile)
93
- commandParts.push(escapeShellValue(args.secondFile));
94
- for (const [key, value] of Object.entries(flags)) {
95
- if (value && value.toString().length > 0) {
96
- if (typeof value === 'boolean') {
97
- commandParts.push(`--${key}`);
98
- }
99
- else if (Array.isArray(value)) {
100
- commandParts.push(`--${key}=${value.map((v) => escapeShellValue(v)).join(',')}`);
101
- }
102
- else {
103
- commandParts.push(`--${key}=${escapeShellValue(value.toString())}`);
104
- }
105
- }
106
- }
107
- this.log(`\nCommand ran: ${commandParts.join(' ')}\n`);
88
+ // // Log the full command that was run
89
+ // const commandParts = ['dcd cloud'];
90
+ // if (args.firstFile) commandParts.push(escapeShellValue(args.firstFile));
91
+ // if (args.secondFile) commandParts.push(escapeShellValue(args.secondFile));
92
+ // for (const [key, value] of Object.entries(flags)) {
93
+ // if (value && value.toString().length > 0) {
94
+ // if (typeof value === 'boolean') {
95
+ // commandParts.push(`--${key}`);
96
+ // } else if (Array.isArray(value)) {
97
+ // commandParts.push(
98
+ // `--${key}=${value.map((v) => escapeShellValue(v)).join(',')}`,
99
+ // );
100
+ // } else {
101
+ // commandParts.push(`--${key}=${escapeShellValue(value.toString())}`);
102
+ // }
103
+ // }
104
+ // }
105
+ // this.log(`\nCommand ran: ${commandParts.join(' ')}\n`);
108
106
  let { 'additional-app-binary-ids': nonFlatAdditionalAppBinaryIds, 'additional-app-files': nonFlatAdditionalAppFiles, 'android-api-level': androidApiLevel, 'android-device': androidDevice, apiKey: apiKeyFlag, apiUrl, 'app-binary-id': appBinaryId, 'app-file': appFile, 'artifacts-path': artifactsPath, async, config: configFile, 'device-locale': deviceLocale, 'download-artifacts': downloadArtifacts, env, 'exclude-flows': excludeFlows, 'exclude-tags': excludeTags, flows, 'google-play': googlePlay, 'include-tags': includeTags, 'ignore-sha-check': ignoreShaCheck, 'ios-device': iOSDevice, 'ios-version': iOSVersion, 'maestro-version': maestroVersion, name, orientation, quiet, retry, report, 'runner-type': runnerType, 'x86-arch': x86Arch, json, ...rest } = flags;
109
107
  if (json) {
110
108
  const originalStdoutWrite = process.stdout.write;
@@ -514,5 +514,5 @@
514
514
  ]
515
515
  }
516
516
  },
517
- "version": "3.6.3"
517
+ "version": "3.6.4"
518
518
  }
package/package.json CHANGED
@@ -79,7 +79,7 @@
79
79
  "prepare": "yarn build",
80
80
  "version": "oclif readme && git add README.md"
81
81
  },
82
- "version": "3.6.3",
82
+ "version": "3.6.4",
83
83
  "bugs": {
84
84
  "url": "https://discord.gg/gm3mJwcNw8"
85
85
  },