remote-dsh 0.7.0 → 0.8.0
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/bin.js +1 -1
- package/package.json +2 -2
package/dist/bin.js
CHANGED
|
@@ -299,7 +299,7 @@ async function handleHostServe(_args, configPath) {
|
|
|
299
299
|
if (config.mode === "join") {
|
|
300
300
|
if (config.hub === undefined)
|
|
301
301
|
throw new Error("host.json 缺 hub(join 模式);先 `rdsh host join <hub>`");
|
|
302
|
-
await join({ hubUrl: config.hub, name: config.name, insecure: config.insecure, dshPath: config.dshPath });
|
|
302
|
+
await join({ hubUrl: config.hub, name: config.name, insecure: config.insecure, dshPath: config.dshPath, dshUiCompat: config.dshUiCompat });
|
|
303
303
|
return;
|
|
304
304
|
}
|
|
305
305
|
await serve({ configPath: target });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "remote-dsh",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Secure remote access for DeepSeek Harness: rdsh serve / rdsh join / rdsh hub",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"node": ">=22"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"rdsh-gateway": "0.
|
|
26
|
+
"rdsh-gateway": "0.6.0",
|
|
27
27
|
"rdsh-hub": "0.5.0"
|
|
28
28
|
},
|
|
29
29
|
"scripts": {
|