indusagi-coding-agent 0.1.60 → 0.1.61
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/CHANGELOG.md +5 -0
- package/dist/entry.js +4 -3
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.61] - Latest Release
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- **CLI silent no-op when installed globally**: `indus` / `indusagi` (including `--version` / `-v`) produced no output when run through a global `npm install -g` symlink — the entry-point check compared raw paths, which never matched the linked bin, so the program never started. The check now resolves both sides through realpath.
|
|
7
|
+
|
|
3
8
|
## [0.1.60] - Latest Release
|
|
4
9
|
|
|
5
10
|
### Changed
|
package/dist/entry.js
CHANGED
|
@@ -11049,6 +11049,7 @@ var init_builtins = __esm({
|
|
|
11049
11049
|
|
|
11050
11050
|
// src/entry.ts
|
|
11051
11051
|
import { fileURLToPath } from "node:url";
|
|
11052
|
+
import { realpathSync as realpathSync2 } from "node:fs";
|
|
11052
11053
|
import { argv as processArgv, env } from "node:process";
|
|
11053
11054
|
|
|
11054
11055
|
// src/workspace/brand.ts
|
|
@@ -17895,7 +17896,7 @@ function previewOf(text, limit = PREVIEW_LIMIT) {
|
|
|
17895
17896
|
}
|
|
17896
17897
|
|
|
17897
17898
|
// src/index.ts
|
|
17898
|
-
var VERSION = "0.1.
|
|
17899
|
+
var VERSION = "0.1.61";
|
|
17899
17900
|
|
|
17900
17901
|
// src/console/components/TerminalConsole.tsx
|
|
17901
17902
|
import { jsx as jsx8, jsxs as jsxs5 } from "indusagi/react-host/jsx-runtime";
|
|
@@ -19145,7 +19146,7 @@ function renderHelp() {
|
|
|
19145
19146
|
`);
|
|
19146
19147
|
}
|
|
19147
19148
|
function renderVersion() {
|
|
19148
|
-
process.stdout.write(`${BRAND.name} 0.1.
|
|
19149
|
+
process.stdout.write(`${BRAND.name} 0.1.61
|
|
19149
19150
|
`);
|
|
19150
19151
|
}
|
|
19151
19152
|
async function drainClosables(ctx) {
|
|
@@ -19236,7 +19237,7 @@ function isProgramEntry() {
|
|
|
19236
19237
|
const entryArg = processArgv[1];
|
|
19237
19238
|
if (!entryArg) return false;
|
|
19238
19239
|
try {
|
|
19239
|
-
return fileURLToPath(import.meta.url) === entryArg;
|
|
19240
|
+
return realpathSync2(fileURLToPath(import.meta.url)) === realpathSync2(entryArg);
|
|
19240
19241
|
} catch {
|
|
19241
19242
|
return false;
|
|
19242
19243
|
}
|
package/dist/types/index.d.ts
CHANGED
package/package.json
CHANGED