@swmansion/argent 0.14.1-next.11 → 0.14.1-next.13

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.
Binary file
Binary file
Binary file
package/dist/cli-cmds.mjs CHANGED
@@ -307,6 +307,7 @@ function spawnToolsServer(paths, port, options = {}) {
307
307
  const actualPort = parseInt(match[1], 10);
308
308
  rl.close();
309
309
  child.stdout?.resume();
310
+ child.stdout?.unref?.();
310
311
  settle(() => resolve3({ port: actualPort, pid }));
311
312
  }
312
313
  });
@@ -15590,6 +15590,7 @@ function spawnToolsServer(paths, port, options = {}) {
15590
15590
  const actualPort = parseInt(match[1], 10);
15591
15591
  rl.close();
15592
15592
  child.stdout?.resume();
15593
+ child.stdout?.unref?.();
15593
15594
  settle(() => resolve3({ port: actualPort, pid }));
15594
15595
  }
15595
15596
  });
@@ -101494,7 +101494,6 @@ var bootstrapDylibPath = () => {
101494
101494
  return requireDylibIn(DYLIB_DIR, "libArgentInjectionBootstrap.dylib");
101495
101495
  };
101496
101496
  var bootstrapDylibPathTcp = () => {
101497
- requireDarwin("bootstrapDylibPathTcp");
101498
101497
  return requireDylibIn(DYLIB_TCP_DIR, "libArgentInjectionBootstrap.dylib");
101499
101498
  };
101500
101499
  var bootstrapDylibPathTvos = () => {
@@ -101502,11 +101501,9 @@ var bootstrapDylibPathTvos = () => {
101502
101501
  return requireDylibIn(DYLIB_TVOS_DIR, "libArgentInjectionBootstrap.dylib");
101503
101502
  };
101504
101503
  var nativeDevtoolsDylibPathTcp = () => {
101505
- requireDarwin("nativeDevtoolsDylibPathTcp");
101506
101504
  return requireDylibIn(DYLIB_TCP_DIR, "libNativeDevtoolsIos.dylib");
101507
101505
  };
101508
101506
  var keyboardPatchDylibPathTcp = () => {
101509
- requireDarwin("keyboardPatchDylibPathTcp");
101510
101507
  return requireDylibIn(DYLIB_TCP_DIR, "libKeyboardPatch.dylib");
101511
101508
  };
101512
101509
  function tcpInjectionDylibs() {
@@ -101554,7 +101551,6 @@ function axServiceBinaryPath() {
101554
101551
  return requireBinIn(platformBinDir(), "ax-service");
101555
101552
  }
101556
101553
  function axServiceBinaryPathTcp() {
101557
- requireDarwin("ax-service (tcp)");
101558
101554
  return requireBinIn(platformTcpBinDir(), "ax-service");
101559
101555
  }
101560
101556
  function tvosAxServiceBinaryPath() {
@@ -121373,6 +121369,11 @@ function makeIosImpl3(registry2) {
121373
121369
  handler: async (_services, params, device) => await isTvOsSimulator(device.id) ? typeTv(registry2, device, params) : typeSimulatorServer(registry2, device, params)
121374
121370
  };
121375
121371
  }
121372
+ function makeIosRemoteImpl(registry2) {
121373
+ return {
121374
+ handler: async (_services, params, device) => typeSimulatorServer(registry2, device, params)
121375
+ };
121376
+ }
121376
121377
 
121377
121378
  // ../tool-server/src/tools/keyboard/platforms/android.ts
121378
121379
  init_adb();
@@ -121686,6 +121687,7 @@ Provide text, key, or both.`,
121686
121687
  toolId: "keyboard",
121687
121688
  capability: capability15,
121688
121689
  ios: makeIosImpl3(registry2),
121690
+ iosRemote: makeIosRemoteImpl(registry2),
121689
121691
  android: makeAndroidImpl(registry2),
121690
121692
  chromium: makeChromiumImpl(registry2),
121691
121693
  vega: vegaImpl4
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swmansion/argent",
3
- "version": "0.14.1-next.11",
3
+ "version": "0.14.1-next.13",
4
4
  "description": "MCP server for iOS Simulator and Android Emulator control",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {