@termfleet/core 0.1.1 → 0.1.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/local-tunnel.js +1 -3
- package/package.json +1 -1
package/dist/local-tunnel.js
CHANGED
|
@@ -88,9 +88,7 @@ function startLocalTunnel(src, options) {
|
|
|
88
88
|
if (!commandExists(bin)) {
|
|
89
89
|
throw new Error(`Opening localhost iframe panels requires ${bin} on PATH. Set TERMFLEET_LOCAL_TUNNEL_BIN to your tunnel client.`);
|
|
90
90
|
}
|
|
91
|
-
const tunnelServerUrl = process.env.TUNNEL_SERVER_URL ??
|
|
92
|
-
process.env.TERMFLEET_TUNNEL_SERVER_URL ??
|
|
93
|
-
'https://volter-tunnel.aaron-0ed.workers.dev';
|
|
91
|
+
const tunnelServerUrl = process.env.TUNNEL_SERVER_URL ?? process.env.TERMFLEET_TUNNEL_SERVER_URL;
|
|
94
92
|
if (!tunnelServerUrl) {
|
|
95
93
|
throw new Error("Tunneling requires a tunnel server. Set TERMFLEET_TUNNEL_SERVER_URL to your tunnel server's URL (or use a standalone tunnel like ngrok/cloudflared — see the README).");
|
|
96
94
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@termfleet/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Termfleet core: contracts, the provider SDK, and the agent-transcript/session library (Claude Code / Codex / Gemini). The reusable layer, usable beyond the console.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude-code",
|