@frod.io/bridge 0.7.1 → 0.7.2
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/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
// @frod.io/bridge 0.7.
|
|
2
|
+
// @frod.io/bridge 0.7.2. One file; do not edit: the source is apps/bridge/src in the platform repository.
|
|
3
3
|
import { createRequire as __createRequire } from 'node:module';
|
|
4
4
|
const require = __createRequire(import.meta.url);
|
|
5
5
|
var __create = Object.create;
|
|
@@ -7779,7 +7779,7 @@ function samplesInWords(samples) {
|
|
|
7779
7779
|
}
|
|
7780
7780
|
|
|
7781
7781
|
// src/cli.ts
|
|
7782
|
-
var VERSION = "0.7.
|
|
7782
|
+
var VERSION = "0.7.2";
|
|
7783
7783
|
function arg(flag, argv) {
|
|
7784
7784
|
const i = argv.indexOf(flag);
|
|
7785
7785
|
return i >= 0 ? argv[i + 1] : void 0;
|
|
@@ -8129,7 +8129,8 @@ async function cmdLeave() {
|
|
|
8129
8129
|
const r = uninstallWindows();
|
|
8130
8130
|
if (r.removed) log.info("Removed the scheduled task.");
|
|
8131
8131
|
}
|
|
8132
|
-
|
|
8132
|
+
writeConfig({ ...cfg, dormant: { reason: "left", at: (/* @__PURE__ */ new Date()).toISOString() } });
|
|
8133
|
+
log.info(`Left. ${CONFIG_PATH} is kept for reference and marked as left; a new join code starts over.`);
|
|
8133
8134
|
}
|
|
8134
8135
|
async function cmdInstall() {
|
|
8135
8136
|
const cfg = readConfig();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frod.io/bridge",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Your computer is a desk: hosts a Frod.io agent's sessions with your own Claude Code, Codex or Grok Build. Installs and updates itself.",
|
|
6
6
|
"license": "UNLICENSED",
|