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 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 = "d28f51becc566aa4";
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
@@ -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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coderaft",
3
- "version": "0.0.14",
3
+ "version": "0.0.15",
4
4
  "repository": "pithings/coderaft",
5
5
  "bin": {
6
6
  "coderaft": "./dist/cli.mjs"