dydo 1.2.41 → 1.2.42
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/README.md +1 -1
- package/bin/dydo +2 -2
- package/install.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,7 +47,7 @@ You maintain your project's intent, architecture, and conventions in structured
|
|
|
47
47
|
npm install -g dydo
|
|
48
48
|
|
|
49
49
|
# if you have .NET installed
|
|
50
|
-
dotnet tool install -g
|
|
50
|
+
dotnet tool install -g dydo
|
|
51
51
|
```
|
|
52
52
|
|
|
53
53
|
**Note:** The setup will prompt you to set the `DYDO_HUMAN` environment variable. Agents use this to know which human they belong to.
|
package/bin/dydo
CHANGED
|
@@ -9,7 +9,7 @@ function main() {
|
|
|
9
9
|
|
|
10
10
|
if (!platformInfo.supported) {
|
|
11
11
|
console.error(`Error: ${platformInfo.error}`);
|
|
12
|
-
console.error('Install via .NET instead: dotnet tool install -g
|
|
12
|
+
console.error('Install via .NET instead: dotnet tool install -g dydo');
|
|
13
13
|
process.exit(2);
|
|
14
14
|
}
|
|
15
15
|
|
|
@@ -18,7 +18,7 @@ function main() {
|
|
|
18
18
|
if (!isBinaryInstalled(platformInfo)) {
|
|
19
19
|
console.error('Error: dydo binary not found.');
|
|
20
20
|
console.error('Try reinstalling: npm install -g dydo');
|
|
21
|
-
console.error('Or install via .NET: dotnet tool install -g
|
|
21
|
+
console.error('Or install via .NET: dotnet tool install -g dydo');
|
|
22
22
|
process.exit(2);
|
|
23
23
|
}
|
|
24
24
|
|
package/install.js
CHANGED
|
@@ -12,7 +12,7 @@ async function install() {
|
|
|
12
12
|
if (!platformInfo.supported) {
|
|
13
13
|
console.error(`\n[dydo] ${platformInfo.error}`);
|
|
14
14
|
console.error('[dydo] You can still use dydo if you have .NET installed:');
|
|
15
|
-
console.error(' dotnet tool install -g
|
|
15
|
+
console.error(' dotnet tool install -g dydo');
|
|
16
16
|
process.exit(0); // Don't fail npm install, just warn
|
|
17
17
|
}
|
|
18
18
|
|
|
@@ -31,7 +31,7 @@ async function install() {
|
|
|
31
31
|
console.error('[dydo] You can manually download from:');
|
|
32
32
|
console.error(` https://github.com/bodnarbalazs/dydo/releases/tag/v${pkg.version}`);
|
|
33
33
|
console.error('[dydo] Or install via .NET:');
|
|
34
|
-
console.error(' dotnet tool install -g
|
|
34
|
+
console.error(' dotnet tool install -g dydo');
|
|
35
35
|
process.exit(1);
|
|
36
36
|
}
|
|
37
37
|
}
|