@commandgarden/cli 1.4.0 → 1.4.1

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.
Files changed (2) hide show
  1. package/dist/main.js +1 -1
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -17416,7 +17416,7 @@ function executeExtensionSetup(baseDir) {
17416
17416
  "dist/manifest.json"
17417
17417
  );
17418
17418
  const extensionDir = dirname2(manifestPath);
17419
- const [command, args] = process.platform === "darwin" ? ["open", ["chrome://extensions"]] : process.platform === "win32" ? ["cmd", ["/c", "start", "", "chrome://extensions"]] : ["xdg-open", ["chrome://extensions"]];
17419
+ const [command, args] = process.platform === "darwin" ? ["open", ["-a", "Google Chrome", "chrome://extensions"]] : process.platform === "win32" ? ["cmd", ["/c", "start", "chrome", "chrome://extensions"]] : ["google-chrome", ["chrome://extensions"]];
17420
17420
  const child = spawn3(command, args, { stdio: "ignore", detached: true });
17421
17421
  child.on("error", () => {
17422
17422
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@commandgarden/cli",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Enterprise browser automation CLI",
5
5
  "type": "module",
6
6
  "license": "MIT",