@h-rig/cli 0.0.6-alpha.31 → 0.0.6-alpha.32
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/rig.js +3 -1
- package/dist/src/commands.js +3 -1
- package/dist/src/index.js +3 -1
- package/package.json +6 -6
package/dist/bin/rig.js
CHANGED
|
@@ -11661,9 +11661,11 @@ ${helpText()}`);
|
|
|
11661
11661
|
const path = await import("path");
|
|
11662
11662
|
const { fileURLToPath } = await import("url");
|
|
11663
11663
|
const execPath = process.execPath || "";
|
|
11664
|
+
const moduleDir = path.dirname(fileURLToPath(import.meta.url));
|
|
11664
11665
|
const candidates = [
|
|
11665
11666
|
execPath ? path.resolve(path.dirname(execPath), "..", "manifest.json") : "",
|
|
11666
|
-
path.resolve(
|
|
11667
|
+
path.resolve(moduleDir, "..", "package.json"),
|
|
11668
|
+
path.resolve(moduleDir, "..", "..", "package.json"),
|
|
11667
11669
|
path.resolve(process.cwd(), "packages/cli/package.json")
|
|
11668
11670
|
].filter(Boolean);
|
|
11669
11671
|
for (const candidate of candidates) {
|
package/dist/src/commands.js
CHANGED
|
@@ -11467,9 +11467,11 @@ ${helpText()}`);
|
|
|
11467
11467
|
const path = await import("path");
|
|
11468
11468
|
const { fileURLToPath } = await import("url");
|
|
11469
11469
|
const execPath = process.execPath || "";
|
|
11470
|
+
const moduleDir = path.dirname(fileURLToPath(import.meta.url));
|
|
11470
11471
|
const candidates = [
|
|
11471
11472
|
execPath ? path.resolve(path.dirname(execPath), "..", "manifest.json") : "",
|
|
11472
|
-
path.resolve(
|
|
11473
|
+
path.resolve(moduleDir, "..", "package.json"),
|
|
11474
|
+
path.resolve(moduleDir, "..", "..", "package.json"),
|
|
11473
11475
|
path.resolve(process.cwd(), "packages/cli/package.json")
|
|
11474
11476
|
].filter(Boolean);
|
|
11475
11477
|
for (const candidate of candidates) {
|
package/dist/src/index.js
CHANGED
|
@@ -11657,9 +11657,11 @@ ${helpText()}`);
|
|
|
11657
11657
|
const path = await import("path");
|
|
11658
11658
|
const { fileURLToPath } = await import("url");
|
|
11659
11659
|
const execPath = process.execPath || "";
|
|
11660
|
+
const moduleDir = path.dirname(fileURLToPath(import.meta.url));
|
|
11660
11661
|
const candidates = [
|
|
11661
11662
|
execPath ? path.resolve(path.dirname(execPath), "..", "manifest.json") : "",
|
|
11662
|
-
path.resolve(
|
|
11663
|
+
path.resolve(moduleDir, "..", "package.json"),
|
|
11664
|
+
path.resolve(moduleDir, "..", "..", "package.json"),
|
|
11663
11665
|
path.resolve(process.cwd(), "packages/cli/package.json")
|
|
11664
11666
|
].filter(Boolean);
|
|
11665
11667
|
for (const candidate of candidates) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h-rig/cli",
|
|
3
|
-
"version": "0.0.6-alpha.
|
|
3
|
+
"version": "0.0.6-alpha.32",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Rig package",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@clack/prompts": "^1.2.0",
|
|
26
|
-
"@earendil-works/pi-coding-agent": "npm:@h-rig/pi-coding-agent@0.0.6-alpha.
|
|
27
|
-
"@rig/core": "npm:@h-rig/core@0.0.6-alpha.
|
|
28
|
-
"@rig/runtime": "npm:@h-rig/runtime@0.0.6-alpha.
|
|
29
|
-
"@rig/client": "npm:@h-rig/client@0.0.6-alpha.
|
|
30
|
-
"@rig/server": "npm:@h-rig/server@0.0.6-alpha.
|
|
26
|
+
"@earendil-works/pi-coding-agent": "npm:@h-rig/pi-coding-agent@0.0.6-alpha.32",
|
|
27
|
+
"@rig/core": "npm:@h-rig/core@0.0.6-alpha.32",
|
|
28
|
+
"@rig/runtime": "npm:@h-rig/runtime@0.0.6-alpha.32",
|
|
29
|
+
"@rig/client": "npm:@h-rig/client@0.0.6-alpha.32",
|
|
30
|
+
"@rig/server": "npm:@h-rig/server@0.0.6-alpha.32",
|
|
31
31
|
"picocolors": "^1.1.1"
|
|
32
32
|
}
|
|
33
33
|
}
|