@getmonoceros/workbench 1.38.18 → 1.38.19

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
@@ -9070,7 +9070,7 @@ var CLI_VERSION;
9070
9070
  var init_version = __esm({
9071
9071
  "src/version.ts"() {
9072
9072
  "use strict";
9073
- CLI_VERSION = true ? "1.38.18" : "dev";
9073
+ CLI_VERSION = true ? "1.38.19" : "dev";
9074
9074
  }
9075
9075
  });
9076
9076
 
@@ -12815,7 +12815,7 @@ async function runShare(opts) {
12815
12815
  if (addresses.length === 0) addresses.push("<host-ip>");
12816
12816
  const caPath = await caTrustDisplayPath(tls.caCertPath, home);
12817
12817
  const banner = [
12818
- `Sharing ${opts.name}/${opts.app} on the local network (Ctrl+C to stop):`
12818
+ `Sharing ${opts.name}/${opts.app} on the local network:`
12819
12819
  ];
12820
12820
  for (const t of ported) {
12821
12821
  banner.push("", ` ${cyan2(t.name)}`);
@@ -12826,7 +12826,9 @@ async function runShare(opts) {
12826
12826
  banner.push(
12827
12827
  "",
12828
12828
  dim(" Trust the local CA once (first device) for warning-free HTTPS:"),
12829
- dim(` ${caPath}`)
12829
+ dim(` ${caPath}`),
12830
+ "",
12831
+ "Press Ctrl+C to stop sharing."
12830
12832
  );
12831
12833
  log.info(banner.join("\n"));
12832
12834
  const dockerSpawn = opts.dockerSpawn ?? defaultDockerSpawn;