@h-rig/cli 0.0.6-alpha.29 → 0.0.6-alpha.30
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 +2 -0
- package/dist/src/commands.js +2 -0
- package/dist/src/index.js +2 -0
- package/package.json +6 -6
package/dist/bin/rig.js
CHANGED
|
@@ -11656,9 +11656,11 @@ ${helpText()}`);
|
|
|
11656
11656
|
try {
|
|
11657
11657
|
const fs = await import("fs");
|
|
11658
11658
|
const path = await import("path");
|
|
11659
|
+
const { fileURLToPath } = await import("url");
|
|
11659
11660
|
const execPath = process.execPath || "";
|
|
11660
11661
|
const candidates = [
|
|
11661
11662
|
execPath ? path.resolve(path.dirname(execPath), "..", "manifest.json") : "",
|
|
11663
|
+
path.resolve(path.dirname(fileURLToPath(import.meta.url)), "..", "package.json"),
|
|
11662
11664
|
path.resolve(process.cwd(), "packages/cli/package.json")
|
|
11663
11665
|
].filter(Boolean);
|
|
11664
11666
|
for (const candidate of candidates) {
|
package/dist/src/commands.js
CHANGED
|
@@ -11462,9 +11462,11 @@ ${helpText()}`);
|
|
|
11462
11462
|
try {
|
|
11463
11463
|
const fs = await import("fs");
|
|
11464
11464
|
const path = await import("path");
|
|
11465
|
+
const { fileURLToPath } = await import("url");
|
|
11465
11466
|
const execPath = process.execPath || "";
|
|
11466
11467
|
const candidates = [
|
|
11467
11468
|
execPath ? path.resolve(path.dirname(execPath), "..", "manifest.json") : "",
|
|
11469
|
+
path.resolve(path.dirname(fileURLToPath(import.meta.url)), "..", "package.json"),
|
|
11468
11470
|
path.resolve(process.cwd(), "packages/cli/package.json")
|
|
11469
11471
|
].filter(Boolean);
|
|
11470
11472
|
for (const candidate of candidates) {
|
package/dist/src/index.js
CHANGED
|
@@ -11652,9 +11652,11 @@ ${helpText()}`);
|
|
|
11652
11652
|
try {
|
|
11653
11653
|
const fs = await import("fs");
|
|
11654
11654
|
const path = await import("path");
|
|
11655
|
+
const { fileURLToPath } = await import("url");
|
|
11655
11656
|
const execPath = process.execPath || "";
|
|
11656
11657
|
const candidates = [
|
|
11657
11658
|
execPath ? path.resolve(path.dirname(execPath), "..", "manifest.json") : "",
|
|
11659
|
+
path.resolve(path.dirname(fileURLToPath(import.meta.url)), "..", "package.json"),
|
|
11658
11660
|
path.resolve(process.cwd(), "packages/cli/package.json")
|
|
11659
11661
|
].filter(Boolean);
|
|
11660
11662
|
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.30",
|
|
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.30",
|
|
27
|
+
"@rig/core": "npm:@h-rig/core@0.0.6-alpha.30",
|
|
28
|
+
"@rig/runtime": "npm:@h-rig/runtime@0.0.6-alpha.30",
|
|
29
|
+
"@rig/client": "npm:@h-rig/client@0.0.6-alpha.30",
|
|
30
|
+
"@rig/server": "npm:@h-rig/server@0.0.6-alpha.30",
|
|
31
31
|
"picocolors": "^1.1.1"
|
|
32
32
|
}
|
|
33
33
|
}
|