@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 +4 -3
- package/dist/cli.mjs +4 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -9810,10 +9810,11 @@ function registerScanCommand(program2) {
|
|
|
9810
9810
|
}
|
|
9811
9811
|
}
|
|
9812
9812
|
}
|
|
9813
|
-
|
|
9814
|
-
|
|
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("
|
|
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
|
-
|
|
9794
|
-
|
|
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("
|
|
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("");
|