coderaft 0.0.14 → 0.0.15
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/code.mjs +1 -1
- package/code.tar.zst +0 -0
- package/dist/_chunks/server.mjs +1 -1
- package/package.json +1 -1
package/code.mjs
CHANGED
|
@@ -4,7 +4,7 @@ import { tmpdir } from "node:os";
|
|
|
4
4
|
import { fileURLToPath } from "node:url";
|
|
5
5
|
|
|
6
6
|
// Auto-updated by scripts/pack.ts
|
|
7
|
-
const codeArchiveHash = "
|
|
7
|
+
const codeArchiveHash = "28b47fa16ea99a3f";
|
|
8
8
|
|
|
9
9
|
const archivePath = fileURLToPath(new URL("./code.tar.zst", import.meta.url));
|
|
10
10
|
|
package/code.tar.zst
CHANGED
|
Binary file
|
package/dist/_chunks/server.mjs
CHANGED
|
@@ -100,7 +100,7 @@ async function createCodeServer(opts = {}) {
|
|
|
100
100
|
}
|
|
101
101
|
const vscodeServer = await (await mod.loadCodeWithNls()).createServer(null, {
|
|
102
102
|
"default-folder": defaultFolder,
|
|
103
|
-
...withoutToken ? {} : { "connection-token": connectionToken },
|
|
103
|
+
...withoutToken ? { "without-connection-token": true } : { "connection-token": connectionToken },
|
|
104
104
|
"reconnection-grace-time": "10800",
|
|
105
105
|
"disable-getting-started-override": true,
|
|
106
106
|
...opts.vscode
|