@node9/proxy 1.12.8 → 1.12.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/cli.js CHANGED
@@ -9810,10 +9810,11 @@ function registerScanCommand(program2) {
9810
9810
  }
9811
9811
  }
9812
9812
  }
9813
- console.log(" " + import_chalk2.default.cyan("\u{1F310} View in browser:") + " " + import_chalk2.default.underline(url));
9814
- if (!isDaemonRunning()) {
9813
+ if (isDaemonRunning()) {
9814
+ console.log(" " + import_chalk2.default.cyan("\u{1F310} View in browser:") + " " + import_chalk2.default.underline(url));
9815
+ } else {
9815
9816
  console.log(
9816
- " " + import_chalk2.default.dim(" run ") + import_chalk2.default.cyan("node9 daemon --background") + import_chalk2.default.dim(" to open the dashboard")
9817
+ " " + import_chalk2.default.dim("\u{1F4CA} To view in browser, start the daemon: ") + import_chalk2.default.cyan("node9 daemon --background")
9817
9818
  );
9818
9819
  }
9819
9820
  console.log("");
package/dist/cli.mjs CHANGED
@@ -9790,10 +9790,11 @@ function registerScanCommand(program2) {
9790
9790
  }
9791
9791
  }
9792
9792
  }
9793
- console.log(" " + chalk2.cyan("\u{1F310} View in browser:") + " " + chalk2.underline(url));
9794
- if (!isDaemonRunning()) {
9793
+ if (isDaemonRunning()) {
9794
+ console.log(" " + chalk2.cyan("\u{1F310} View in browser:") + " " + chalk2.underline(url));
9795
+ } else {
9795
9796
  console.log(
9796
- " " + chalk2.dim(" run ") + chalk2.cyan("node9 daemon --background") + chalk2.dim(" to open the dashboard")
9797
+ " " + chalk2.dim("\u{1F4CA} To view in browser, start the daemon: ") + chalk2.cyan("node9 daemon --background")
9797
9798
  );
9798
9799
  }
9799
9800
  console.log("");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@node9/proxy",
3
- "version": "1.12.8",
3
+ "version": "1.12.9",
4
4
  "description": "The Sudo Command for AI Agents. Execution Security for Claude Code & MCP.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",