@h-rig/server 0.0.6-alpha.19 → 0.0.6-alpha.20

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/src/index.js CHANGED
@@ -8286,7 +8286,7 @@ data: ${JSON.stringify({ connectedAt: new Date().toISOString() })}
8286
8286
  }
8287
8287
  if (url.pathname === "/api/pi-rig/install" && req.method === "POST") {
8288
8288
  const configuredPackageSource = normalizeString(process.env.RIG_PI_RIG_PACKAGE_SOURCE);
8289
- const packageSource = configuredPackageSource ?? [process.env.RIG_HOST_PROJECT_ROOT, process.cwd(), state.projectRoot].map((root) => normalizeString(root)).filter((root) => Boolean(root)).map((root) => resolve20(root, "packages", "pi-rig")).find((candidate) => existsSync13(resolve20(candidate, "package.json"))) ?? "npm:@rig/pi-rig";
8289
+ const packageSource = configuredPackageSource ?? [process.env.RIG_HOST_PROJECT_ROOT, process.cwd(), state.projectRoot].map((root) => normalizeString(root)).filter((root) => Boolean(root)).map((root) => resolve20(root, "packages", "pi-rig")).find((candidate) => existsSync13(resolve20(candidate, "package.json"))) ?? "npm:@h-rig/pi-rig";
8290
8290
  if (process.env.RIG_TEST_FAKE_PI_INSTALL === "1") {
8291
8291
  return deps.jsonResponse({ ok: true, installed: true, piOk: true, piRigOk: true, extensionPath: "remote:~/.pi/agent/extensions/pi-rig", packageSource });
8292
8292
  }
@@ -4177,7 +4177,7 @@ data: ${JSON.stringify({ connectedAt: new Date().toISOString() })}
4177
4177
  }
4178
4178
  if (url.pathname === "/api/pi-rig/install" && req.method === "POST") {
4179
4179
  const configuredPackageSource = normalizeString(process.env.RIG_PI_RIG_PACKAGE_SOURCE);
4180
- const packageSource = configuredPackageSource ?? [process.env.RIG_HOST_PROJECT_ROOT, process.cwd(), state.projectRoot].map((root) => normalizeString(root)).filter((root) => Boolean(root)).map((root) => resolve13(root, "packages", "pi-rig")).find((candidate) => existsSync10(resolve13(candidate, "package.json"))) ?? "npm:@rig/pi-rig";
4180
+ const packageSource = configuredPackageSource ?? [process.env.RIG_HOST_PROJECT_ROOT, process.cwd(), state.projectRoot].map((root) => normalizeString(root)).filter((root) => Boolean(root)).map((root) => resolve13(root, "packages", "pi-rig")).find((candidate) => existsSync10(resolve13(candidate, "package.json"))) ?? "npm:@h-rig/pi-rig";
4181
4181
  if (process.env.RIG_TEST_FAKE_PI_INSTALL === "1") {
4182
4182
  return deps.jsonResponse({ ok: true, installed: true, piOk: true, piRigOk: true, extensionPath: "remote:~/.pi/agent/extensions/pi-rig", packageSource });
4183
4183
  }
@@ -7780,7 +7780,7 @@ data: ${JSON.stringify({ connectedAt: new Date().toISOString() })}
7780
7780
  }
7781
7781
  if (url.pathname === "/api/pi-rig/install" && req.method === "POST") {
7782
7782
  const configuredPackageSource = normalizeString(process.env.RIG_PI_RIG_PACKAGE_SOURCE);
7783
- const packageSource = configuredPackageSource ?? [process.env.RIG_HOST_PROJECT_ROOT, process.cwd(), state.projectRoot].map((root) => normalizeString(root)).filter((root) => Boolean(root)).map((root) => resolve20(root, "packages", "pi-rig")).find((candidate) => existsSync13(resolve20(candidate, "package.json"))) ?? "npm:@rig/pi-rig";
7783
+ const packageSource = configuredPackageSource ?? [process.env.RIG_HOST_PROJECT_ROOT, process.cwd(), state.projectRoot].map((root) => normalizeString(root)).filter((root) => Boolean(root)).map((root) => resolve20(root, "packages", "pi-rig")).find((candidate) => existsSync13(resolve20(candidate, "package.json"))) ?? "npm:@h-rig/pi-rig";
7784
7784
  if (process.env.RIG_TEST_FAKE_PI_INSTALL === "1") {
7785
7785
  return deps.jsonResponse({ ok: true, installed: true, piOk: true, piRigOk: true, extensionPath: "remote:~/.pi/agent/extensions/pi-rig", packageSource });
7786
7786
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h-rig/server",
3
- "version": "0.0.6-alpha.19",
3
+ "version": "0.0.6-alpha.20",
4
4
  "type": "module",
5
5
  "description": "Rig package",
6
6
  "license": "UNLICENSED",
@@ -25,9 +25,9 @@
25
25
  "rig-server": "./dist/src/server.js"
26
26
  },
27
27
  "dependencies": {
28
- "@rig/contracts": "npm:@h-rig/contracts@0.0.6-alpha.19",
29
- "@rig/core": "npm:@h-rig/core@0.0.6-alpha.19",
30
- "@rig/runtime": "npm:@h-rig/runtime@0.0.6-alpha.19",
28
+ "@rig/contracts": "npm:@h-rig/contracts@0.0.6-alpha.20",
29
+ "@rig/core": "npm:@h-rig/core@0.0.6-alpha.20",
30
+ "@rig/runtime": "npm:@h-rig/runtime@0.0.6-alpha.20",
31
31
  "effect": "4.0.0-beta.78"
32
32
  }
33
33
  }