@getmonoceros/workbench 1.36.8 → 1.36.9

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/bin.js CHANGED
@@ -6739,7 +6739,8 @@ function openInBrowser(url) {
6739
6739
  return false;
6740
6740
  }
6741
6741
  })());
6742
- const [cmd, args] = platform === "darwin" ? ["open", [url]] : platform === "win32" || wsl ? ["cmd.exe", ["/c", "start", "", url]] : ["xdg-open", [url]];
6742
+ const psOpen = `Start-Process '${url.replace(/'/g, "''")}'`;
6743
+ const [cmd, args] = platform === "darwin" ? ["open", [url]] : platform === "win32" || wsl ? ["powershell.exe", ["-NoProfile", "-Command", psOpen]] : ["xdg-open", [url]];
6743
6744
  try {
6744
6745
  const child = spawn5(cmd, args, {
6745
6746
  stdio: "ignore",
@@ -8879,7 +8880,7 @@ var CLI_VERSION;
8879
8880
  var init_version = __esm({
8880
8881
  "src/version.ts"() {
8881
8882
  "use strict";
8882
- CLI_VERSION = true ? "1.36.8" : "dev";
8883
+ CLI_VERSION = true ? "1.36.9" : "dev";
8883
8884
  }
8884
8885
  });
8885
8886