@homespunapps/cli 1.6.47 → 1.6.48

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/config.js CHANGED
@@ -8,8 +8,8 @@ import { readStore, resolveProfile, storePath } from "./store.js";
8
8
  import { VERSION } from "./version.js";
9
9
  /**
10
10
  * The hosted Homespun relay. Used as the relay-URL fallback so a fresh user only
11
- * needs an API key — `homespun agent register` against the hosted relay, then go. A
12
- * self-hoster overrides it with `--url` / `HOMESPUN_URL` / `homespun agent register --url`.
11
+ * needs an API key — `homespun agent register` against the hosted relay, then go. An
12
+ * operator overrides it with `--url` / `HOMESPUN_URL` / `homespun agent register --url`.
13
13
  */
14
14
  export const DEFAULT_RELAY_URL = "https://homespun.dev";
15
15
  /**
@@ -125,7 +125,7 @@ const APPS = {
125
125
  ],
126
126
  notes: [
127
127
  "<app> accepts either the app_id or its slug (resolved via GET /v1/apps?slug= when it does not look like a cuid).",
128
- 'watch streams the app\'s change feed as JSON-lines on stdout, one compact SerializedFeedEntry object per line, identical whether served over the live WebSocket (primary) or the long-poll fallback (used automatically when the WS upgrade fails, for example self-host mode has no WS support yet, or a locked-down network blocks outbound WS). A dormancy transition mid-watch emits a single {"type":"_dormant"} line and exits 0.',
128
+ 'watch streams the app\'s change feed as JSON-lines on stdout, one compact SerializedFeedEntry object per line, identical whether served over the live WebSocket (primary) or the long-poll fallback (used automatically when the WS upgrade fails, for example a locked-down network blocks outbound WS). A dormancy transition mid-watch emits a single {"type":"_dormant"} line and exits 0.',
129
129
  ],
130
130
  outputNote: 'Output is JSON, and JSON-lines for watch. Errors go to stderr as {"error":{"code","message"}} with a non-zero exit.',
131
131
  };
package/dist/upgrade.js CHANGED
@@ -61,7 +61,7 @@ export function detectInstallMethod(entryPath) {
61
61
  * portable command exists — escalate to the human."
62
62
  *
63
63
  * Always pin the upgrade target to `>=${minVersion}` instead of `@latest`
64
- * so a self-hosted relay that requires 0.0.7 doesn't drag the client to a
64
+ * so a relay that requires 0.0.7 doesn't drag the client to a
65
65
  * future 0.1.0 that may have its own incompatibilities. The trailing
66
66
  * `@latest`-equivalent is fine for the operator who deliberately
67
67
  * fast-forwards.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homespunapps/cli",
3
- "version": "1.6.47",
3
+ "version": "1.6.48",
4
4
  "description": "Command-line client for the Homespun relay: deploy a real multi-user web app from your agent, then keep reading and writing its data.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -36,7 +36,7 @@
36
36
  "test:unit": "vitest run"
37
37
  },
38
38
  "dependencies": {
39
- "@homespunapps/core": "^1.6.47",
39
+ "@homespunapps/core": "^1.6.48",
40
40
  "qrcode-terminal": "^0.12.0"
41
41
  },
42
42
  "devDependencies": {