@bonginkan/maria 3.0.4 → 3.0.5
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/maria.cjs +26 -5
- package/dist/bin/maria.cjs.map +1 -1
- package/dist/cli.cjs +24 -3
- package/dist/cli.cjs.map +1 -1
- package/package.json +2 -2
package/dist/cli.cjs
CHANGED
|
@@ -33519,7 +33519,7 @@ Vim keybindings disabled.`;
|
|
|
33519
33519
|
} catch {
|
|
33520
33520
|
}
|
|
33521
33521
|
}
|
|
33522
|
-
const version2 = _packageData?.["version"] || "3.0.
|
|
33522
|
+
const version2 = _packageData?.["version"] || "3.0.5";
|
|
33523
33523
|
return {
|
|
33524
33524
|
success: true,
|
|
33525
33525
|
message: `MARIA CODE CLI v${version2}
|
|
@@ -33532,7 +33532,7 @@ TypeScript Monorepo`
|
|
|
33532
33532
|
} catch {
|
|
33533
33533
|
return {
|
|
33534
33534
|
success: true,
|
|
33535
|
-
message: `MARIA CODE CLI v3.0.
|
|
33535
|
+
message: `MARIA CODE CLI v3.0.5
|
|
33536
33536
|
|
|
33537
33537
|
AI-Powered Development Platform
|
|
33538
33538
|
\xA9 2025 Bonginkan Inc.
|
|
@@ -37385,7 +37385,28 @@ I'm here to assist you effectively!`;
|
|
|
37385
37385
|
};
|
|
37386
37386
|
|
|
37387
37387
|
// src/cli.ts
|
|
37388
|
-
var packageJson2 = { version: "3.0.
|
|
37388
|
+
var packageJson2 = { version: "3.0.5" };
|
|
37389
|
+
try {
|
|
37390
|
+
const fs20 = __require("fs");
|
|
37391
|
+
const path24 = __require("path");
|
|
37392
|
+
const possiblePaths = [
|
|
37393
|
+
path24.resolve(__dirname, "../package.json"),
|
|
37394
|
+
path24.resolve(__dirname, "../../package.json"),
|
|
37395
|
+
path24.resolve(process.cwd(), "package.json"),
|
|
37396
|
+
"/opt/homebrew/lib/node_modules/@bonginkan/maria/package.json"
|
|
37397
|
+
];
|
|
37398
|
+
for (const pkgPath of possiblePaths) {
|
|
37399
|
+
try {
|
|
37400
|
+
const data2 = JSON.parse(fs20.readFileSync(pkgPath, "utf8"));
|
|
37401
|
+
if (data2.version) {
|
|
37402
|
+
packageJson2 = { version: data2.version };
|
|
37403
|
+
break;
|
|
37404
|
+
}
|
|
37405
|
+
} catch {
|
|
37406
|
+
}
|
|
37407
|
+
}
|
|
37408
|
+
} catch {
|
|
37409
|
+
}
|
|
37389
37410
|
var conversationPersistence;
|
|
37390
37411
|
var chatContext;
|
|
37391
37412
|
var aiResponseService;
|