@hermespilot/link 0.8.1-beta.0 → 0.8.1-beta.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/{chunk-HBRTCPIG.js → chunk-ZXE3GXSC.js} +1052 -306
- package/dist/cli/index.js +3 -3
- package/dist/http/app.js +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -55,7 +55,7 @@ import {
|
|
|
55
55
|
stopDaemonProcess,
|
|
56
56
|
summarizeUsageProbeEnsure,
|
|
57
57
|
translate
|
|
58
|
-
} from "../chunk-
|
|
58
|
+
} from "../chunk-ZXE3GXSC.js";
|
|
59
59
|
|
|
60
60
|
// src/cli/index.ts
|
|
61
61
|
import { Command } from "commander";
|
|
@@ -1259,7 +1259,7 @@ program.command("pair").description(helpText("pair.description")).action(async (
|
|
|
1259
1259
|
})
|
|
1260
1260
|
);
|
|
1261
1261
|
} finally {
|
|
1262
|
-
closeTuiGatewayBackends();
|
|
1262
|
+
await closeTuiGatewayBackends({ paths });
|
|
1263
1263
|
}
|
|
1264
1264
|
try {
|
|
1265
1265
|
const availability = await ensureHermesApiServerAvailable({
|
|
@@ -1504,7 +1504,7 @@ program.command("doctor").option("--install", helpText("doctor.installOnly")).op
|
|
|
1504
1504
|
})
|
|
1505
1505
|
);
|
|
1506
1506
|
} finally {
|
|
1507
|
-
closeTuiGatewayBackends();
|
|
1507
|
+
await closeTuiGatewayBackends({ paths });
|
|
1508
1508
|
}
|
|
1509
1509
|
}
|
|
1510
1510
|
}
|
package/dist/http/app.js
CHANGED