@devicecloud.dev/dcd 3.2.1 → 3.2.2
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.
- package/dist/commands/cloud.js +1 -1
- package/dist/constants.js +1 -1
- package/oclif.manifest.json +2 -2
- package/package.json +1 -1
package/dist/commands/cloud.js
CHANGED
|
@@ -264,7 +264,7 @@ class Cloud extends core_1.Command {
|
|
|
264
264
|
core_1.ux.url(url, url);
|
|
265
265
|
if (async) {
|
|
266
266
|
(0, cli_ux_1.info)('Not waiting for results as async flag is set to true');
|
|
267
|
-
|
|
267
|
+
return;
|
|
268
268
|
}
|
|
269
269
|
// poll for the run status every 5 seconds
|
|
270
270
|
core_1.ux.action.start('Waiting for results', 'Initializing', { stdout: true });
|
package/dist/constants.js
CHANGED
|
@@ -50,7 +50,7 @@ exports.flags = {
|
|
|
50
50
|
description: 'App binary to run your flows against',
|
|
51
51
|
}),
|
|
52
52
|
async: core_1.Flags.boolean({
|
|
53
|
-
description: '
|
|
53
|
+
description: 'Immediately return (exit code 0) from the command without waiting for the results of the run (useful for saving CI minutes)',
|
|
54
54
|
}),
|
|
55
55
|
'device-locale': core_1.Flags.string({
|
|
56
56
|
description: 'Locale that will be set to a device, ISO-639-1 code and uppercase ISO-3166-1 code e.g. "de_DE" for Germany',
|
package/oclif.manifest.json
CHANGED
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"type": "option"
|
|
110
110
|
},
|
|
111
111
|
"async": {
|
|
112
|
-
"description": "
|
|
112
|
+
"description": "Immediately return (exit code 0) from the command without waiting for the results of the run (useful for saving CI minutes)",
|
|
113
113
|
"name": "async",
|
|
114
114
|
"allowNo": false,
|
|
115
115
|
"type": "boolean"
|
|
@@ -323,5 +323,5 @@
|
|
|
323
323
|
]
|
|
324
324
|
}
|
|
325
325
|
},
|
|
326
|
-
"version": "3.2.
|
|
326
|
+
"version": "3.2.2"
|
|
327
327
|
}
|