@swmansion/argent 0.14.1-next.4 → 0.14.1-next.5

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.
@@ -118633,9 +118633,11 @@ async function bootIos(udid, registry2, force, headless) {
118633
118633
  "com.apple.iphonesimulator",
118634
118634
  "CurrentDeviceUDID",
118635
118635
  udid
118636
- ]);
118636
+ ]).catch(() => {
118637
+ });
118637
118638
  if (!headless) {
118638
- await execFileAsync11("open", ["-a", "Simulator.app"]);
118639
+ await execFileAsync11("open", ["-a", "Simulator.app"]).catch(() => execFileAsync11("open", ["-b", "com.apple.dt.Devices"])).catch(() => {
118640
+ });
118639
118641
  }
118640
118642
  return { platform: "ios", udid, booted: true };
118641
118643
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swmansion/argent",
3
- "version": "0.14.1-next.4",
3
+ "version": "0.14.1-next.5",
4
4
  "description": "MCP server for iOS Simulator and Android Emulator control",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {