@4xeoz/re-entry 0.2.9 → 0.2.11

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/README.md CHANGED
@@ -26,8 +26,11 @@ npm install --global @4xeoz/re-entry
26
26
  The package installs both `re-entry` and the older `reentry` spelling; `re-entry` is the documented
27
27
  command.
28
28
 
29
- This uses the deployed Re-entry Cloud Receiver by default:
30
- `https://reentry-cloud.vercel.app`.
29
+ For the retained hosted preview, pass the deployment alias explicitly:
30
+ `https://re-entry-weld.vercel.app`.
31
+
32
+ The currently published CLI source still has its previous hosted default. Until a new package
33
+ release repoints that default, use `--receiver https://re-entry-weld.vercel.app` for hosted tests.
31
34
 
32
35
  The interactive CLI first offers Desktop, the current folder, or a small folder browser. Choose
33
36
  with ↑/↓ and Enter. If you want to skip the picker, pass the workspace directly:
@@ -53,8 +56,8 @@ npm install --global @4xeoz/re-entry
53
56
  re-entry install --codex-cd /absolute/path/to/your/project
54
57
  ```
55
58
 
56
- The published package uses the hosted Receiver by default. Use `--receiver` only when testing a
57
- different Receiver, such as the local preview:
59
+ Use `--receiver` to select the retained hosted preview or a different Receiver, such as the local
60
+ preview:
58
61
 
59
62
  ```sh
60
63
  npx --yes --package=@4xeoz/re-entry re-entry install \
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4xeoz/re-entry",
3
- "version": "0.2.9",
3
+ "version": "0.2.11",
4
4
  "type": "module",
5
5
  "description": "Outbound Local Connector process for the Re-entry Core local preview.",
6
6
  "publishConfig": {
package/src/main.mjs CHANGED
@@ -34,7 +34,7 @@ import {
34
34
  } from "./macos-service.mjs";
35
35
  import { createTerminalUi } from "./terminal-ui.mjs";
36
36
 
37
- const DEFAULT_RECEIVER_ORIGIN = process.env.REENTRY_RECEIVER_ORIGIN ?? "https://reentry-cloud.vercel.app";
37
+ const DEFAULT_RECEIVER_ORIGIN = process.env.REENTRY_RECEIVER_ORIGIN ?? "https://re-entry-weld.vercel.app";
38
38
  const DEFAULT_POLL_INTERVAL_MS = 5_000;
39
39
  const DEFAULT_MAX_CONSECUTIVE_ERRORS = 5;
40
40
  const DEFAULT_PAIRING_REQUEST_TIMEOUT_MS = 20_000;