@4xeoz/re-entry 0.2.8 → 0.2.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/README.md +3 -4
- package/package.json +1 -1
- package/src/main.mjs +1 -1
package/README.md
CHANGED
|
@@ -67,8 +67,7 @@ npx --yes --package=@4xeoz/re-entry re-entry install \
|
|
|
67
67
|
```text
|
|
68
68
|
choose Desktop, the current folder, or another Codex workspace
|
|
69
69
|
-> check Node + find Codex + validate the selected directory
|
|
70
|
-
->
|
|
71
|
-
-> open Re-entry in the default browser
|
|
70
|
+
-> open the dedicated Re-entry user account page in the default browser
|
|
72
71
|
-> sign in or create a user account
|
|
73
72
|
-> click Pair this Mac in the dashboard
|
|
74
73
|
-> enter the short pairing code in the CLI
|
|
@@ -251,8 +250,8 @@ npm start -- \
|
|
|
251
250
|
--codex-cd "$HOME/Code/my-host-project"
|
|
252
251
|
```
|
|
253
252
|
|
|
254
|
-
On the first run, the Connector checks the Mac, opens the Re-entry account page,
|
|
255
|
-
create or sign in to an account and click Pair this Mac, then asks for the
|
|
253
|
+
On the first run, the Connector checks the Mac, opens the dedicated Re-entry user account page,
|
|
254
|
+
waits for you to create or sign in to an account and click Pair this Mac, then asks for the
|
|
256
255
|
dashboard code and stores the credential. On later runs it reuses the saved credential and skips
|
|
257
256
|
pairing:
|
|
258
257
|
|
package/package.json
CHANGED
package/src/main.mjs
CHANGED
|
@@ -307,7 +307,7 @@ async function connect(flags, ui, options = {}) {
|
|
|
307
307
|
baseUrl: receiver,
|
|
308
308
|
requestTimeoutMs: DEFAULT_PAIRING_REQUEST_TIMEOUT_MS,
|
|
309
309
|
});
|
|
310
|
-
const portalUrl = `${receiver}/register?
|
|
310
|
+
const portalUrl = `${receiver}/user-register?next=${encodeURIComponent("/dashboard")}`;
|
|
311
311
|
if (ui.interactive) {
|
|
312
312
|
ui.stopWait("Secure link", "ready");
|
|
313
313
|
ui.info("Re-entry", portalUrl);
|