@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/bin/maria.cjs
CHANGED
|
@@ -34770,7 +34770,7 @@ Vim keybindings disabled.`;
|
|
|
34770
34770
|
} catch {
|
|
34771
34771
|
}
|
|
34772
34772
|
}
|
|
34773
|
-
const version2 = _packageData?.["version"] || "3.0.
|
|
34773
|
+
const version2 = _packageData?.["version"] || "3.0.5";
|
|
34774
34774
|
return {
|
|
34775
34775
|
success: true,
|
|
34776
34776
|
message: `MARIA CODE CLI v${version2}
|
|
@@ -34783,7 +34783,7 @@ TypeScript Monorepo`
|
|
|
34783
34783
|
} catch {
|
|
34784
34784
|
return {
|
|
34785
34785
|
success: true,
|
|
34786
|
-
message: `MARIA CODE CLI v3.0.
|
|
34786
|
+
message: `MARIA CODE CLI v3.0.5
|
|
34787
34787
|
|
|
34788
34788
|
AI-Powered Development Platform
|
|
34789
34789
|
\xA9 2025 Bonginkan Inc.
|
|
@@ -42471,7 +42471,28 @@ var init_cli = __esm({
|
|
|
42471
42471
|
init_conversation_persistence();
|
|
42472
42472
|
init_chat_context_fixed_service();
|
|
42473
42473
|
init_ai_response_service();
|
|
42474
|
-
packageJson2 = { version: "3.0.
|
|
42474
|
+
packageJson2 = { version: "3.0.5" };
|
|
42475
|
+
try {
|
|
42476
|
+
const fs22 = require("fs");
|
|
42477
|
+
const path26 = require("path");
|
|
42478
|
+
const possiblePaths = [
|
|
42479
|
+
path26.resolve(__dirname, "../package.json"),
|
|
42480
|
+
path26.resolve(__dirname, "../../package.json"),
|
|
42481
|
+
path26.resolve(process.cwd(), "package.json"),
|
|
42482
|
+
"/opt/homebrew/lib/node_modules/@bonginkan/maria/package.json"
|
|
42483
|
+
];
|
|
42484
|
+
for (const pkgPath of possiblePaths) {
|
|
42485
|
+
try {
|
|
42486
|
+
const data2 = JSON.parse(fs22.readFileSync(pkgPath, "utf8"));
|
|
42487
|
+
if (data2.version) {
|
|
42488
|
+
packageJson2 = { version: data2.version };
|
|
42489
|
+
break;
|
|
42490
|
+
}
|
|
42491
|
+
} catch {
|
|
42492
|
+
}
|
|
42493
|
+
}
|
|
42494
|
+
} catch {
|
|
42495
|
+
}
|
|
42475
42496
|
sessionMemory = [];
|
|
42476
42497
|
program = createCLI();
|
|
42477
42498
|
program.parse(process.argv);
|
|
@@ -50460,8 +50481,8 @@ ${modeEmoji} ${modeNames[inputType] || "Interactive Mode"}
|
|
|
50460
50481
|
// package.json
|
|
50461
50482
|
var package_default = {
|
|
50462
50483
|
name: "@bonginkan/maria",
|
|
50463
|
-
version: "3.0.
|
|
50464
|
-
description: "\u{1F680} MARIA v3.0.
|
|
50484
|
+
version: "3.0.5",
|
|
50485
|
+
description: "\u{1F680} MARIA v3.0.5 - Dynamic version display fixed. 50+ working commands. Enterprise-ready AI development platform.",
|
|
50465
50486
|
keywords: [
|
|
50466
50487
|
"ai",
|
|
50467
50488
|
"cli",
|