@swmansion/argent 0.22.2-next.5 → 0.22.2-next.7
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/cli-cmds.mjs +1 -1
- package/dist/installer.mjs +1 -1
- package/dist/tool-server.cjs +2 -3
- package/package.json +1 -1
package/dist/cli-cmds.mjs
CHANGED
package/dist/installer.mjs
CHANGED
|
@@ -16428,7 +16428,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
16428
16428
|
var SESSION_ID = randomUUID4();
|
|
16429
16429
|
function readCliVersion() {
|
|
16430
16430
|
if (true) {
|
|
16431
|
-
return "0.22.2-next.
|
|
16431
|
+
return "0.22.2-next.7";
|
|
16432
16432
|
}
|
|
16433
16433
|
return "0.0.0";
|
|
16434
16434
|
}
|
package/dist/tool-server.cjs
CHANGED
|
@@ -93890,7 +93890,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
93890
93890
|
var SESSION_ID = (0, import_node_crypto3.randomUUID)();
|
|
93891
93891
|
function readCliVersion() {
|
|
93892
93892
|
if (true) {
|
|
93893
|
-
return "0.22.2-next.
|
|
93893
|
+
return "0.22.2-next.7";
|
|
93894
93894
|
}
|
|
93895
93895
|
return "0.0.0";
|
|
93896
93896
|
}
|
|
@@ -95750,9 +95750,8 @@ async function simctlShutdown(udid) {
|
|
|
95750
95750
|
await run(["simctl", "shutdown", stripRemotePrefix(udid)]);
|
|
95751
95751
|
}
|
|
95752
95752
|
async function simctlBootstatus(udid, opts) {
|
|
95753
|
-
const args = ["simctl", "bootstatus"];
|
|
95753
|
+
const args = ["simctl", "bootstatus", stripRemotePrefix(udid)];
|
|
95754
95754
|
if (opts?.boot) args.push("-b");
|
|
95755
|
-
args.push(stripRemotePrefix(udid));
|
|
95756
95755
|
await run(args, { timeoutMs: 5 * 6e4 });
|
|
95757
95756
|
}
|
|
95758
95757
|
async function simctlLaunch(udid, bundleId, args = []) {
|
package/package.json
CHANGED