@swmansion/argent 0.25.1-next.24 → 0.25.1-next.25

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 CHANGED
@@ -21857,7 +21857,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
21857
21857
  var SESSION_ID2 = randomUUID5();
21858
21858
  function readCliVersion() {
21859
21859
  if (true) {
21860
- return "0.25.1-next.24";
21860
+ return "0.25.1-next.25";
21861
21861
  }
21862
21862
  return "0.0.0";
21863
21863
  }
@@ -16710,7 +16710,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
16710
16710
  var SESSION_ID = randomUUID4();
16711
16711
  function readCliVersion() {
16712
16712
  if (true) {
16713
- return "0.25.1-next.24";
16713
+ return "0.25.1-next.25";
16714
16714
  }
16715
16715
  return "0.0.0";
16716
16716
  }
@@ -19581,6 +19581,9 @@ function formatShellCommand(cmd) {
19581
19581
  const parts = [cmd.bin, ...cmd.args.map((a3) => a3.includes(" ") ? `"${a3}"` : a3)];
19582
19582
  return parts.join(" ");
19583
19583
  }
19584
+ function shellQuotePath(dir) {
19585
+ return "'" + dir.split("'").join("'\\''") + "'";
19586
+ }
19584
19587
  function detectPackageManager() {
19585
19588
  const agent = process.env.npm_config_user_agent ?? "";
19586
19589
  if (agent.startsWith("yarn")) return "yarn";
@@ -22107,7 +22110,9 @@ async function installLocally(opts) {
22107
22110
  log.error(
22108
22111
  installError ? `${installError}` : `The install reported success but ${import_picocolors3.default.cyan(PACKAGE_NAME)} is not in node_modules.`
22109
22112
  );
22110
- log.info(`Install manually with: ${import_picocolors3.default.cyan(`cd ${projectRoot} && ${cmdStr}`)}`);
22113
+ log.info(
22114
+ `Install manually with: ${import_picocolors3.default.cyan(`cd ${shellQuotePath(projectRoot)} && ${cmdStr}`)}`
22115
+ );
22111
22116
  }
22112
22117
  await tel.trackPackageAction(
22113
22118
  "fresh_install",
@@ -94704,7 +94704,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
94704
94704
  var SESSION_ID = (0, import_node_crypto3.randomUUID)();
94705
94705
  function readCliVersion() {
94706
94706
  if (true) {
94707
- return "0.25.1-next.24";
94707
+ return "0.25.1-next.25";
94708
94708
  }
94709
94709
  return "0.0.0";
94710
94710
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swmansion/argent",
3
- "version": "0.25.1-next.24",
3
+ "version": "0.25.1-next.25",
4
4
  "mcpName": "io.github.software-mansion/argent",
5
5
  "description": "MCP server for iOS Simulator and Android Emulator control",
6
6
  "license": "Apache-2.0",