@mtreeai/msapling-cli 2.3.6-beta.44 → 2.3.6-beta.45
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/index.js +3 -3
- package/package.json +3 -1
package/dist/index.js
CHANGED
|
@@ -10920,7 +10920,7 @@ var init_version = __esm({
|
|
|
10920
10920
|
description: "Show version information for CLI and core packages",
|
|
10921
10921
|
category: "debug",
|
|
10922
10922
|
handler: async (_args, context) => {
|
|
10923
|
-
const cliVersion = true ? "2.3.6-beta.
|
|
10923
|
+
const cliVersion = true ? "2.3.6-beta.45" : "(dev)";
|
|
10924
10924
|
const coreVersion = true ? "2.3.6-beta.43" : "(dev)";
|
|
10925
10925
|
const runtime = process.version;
|
|
10926
10926
|
context.addMessage("system", "MSapling Version Info");
|
|
@@ -10929,7 +10929,7 @@ var init_version = __esm({
|
|
|
10929
10929
|
context.addMessage("system", row2("Core (@msapling/core)", coreVersion));
|
|
10930
10930
|
context.addMessage("system", row2("Runtime (Node/Bun)", runtime));
|
|
10931
10931
|
try {
|
|
10932
|
-
const ts = "2026-06-20T07:
|
|
10932
|
+
const ts = "2026-06-20T07:16:00.342Z";
|
|
10933
10933
|
if (ts && ts !== "__BUILD_TIMESTAMP__") {
|
|
10934
10934
|
context.addMessage("system", row2("Build Timestamp", ts));
|
|
10935
10935
|
}
|
|
@@ -16462,7 +16462,7 @@ import { jsx, jsxs } from "react/jsx-runtime";
|
|
|
16462
16462
|
var Header = () => /* @__PURE__ */ jsxs(Box, { borderStyle: "single", borderColor: "cyan", paddingX: 1, marginBottom: 1, children: [
|
|
16463
16463
|
/* @__PURE__ */ jsxs(Text, { bold: true, color: "cyan", children: [
|
|
16464
16464
|
"\u25CF MSapling CLI v",
|
|
16465
|
-
"2.3.6-beta.
|
|
16465
|
+
"2.3.6-beta.45"
|
|
16466
16466
|
] }),
|
|
16467
16467
|
/* @__PURE__ */ jsx(Box, { marginLeft: 2, children: /* @__PURE__ */ jsx(Text, { color: "gray", children: "Platinum Tier Architecture" }) })
|
|
16468
16468
|
] });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mtreeai/msapling-cli",
|
|
3
|
-
"version": "2.3.6-beta.
|
|
3
|
+
"version": "2.3.6-beta.45",
|
|
4
4
|
"description": "MSapling CLI — React/Ink terminal client for the MSapling backend (chat, projects, MDrive, agent tools). Proprietary; redistribution prohibited.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"author": "MSapling Team",
|
|
@@ -51,7 +51,9 @@
|
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"ink": "^4.4.1",
|
|
54
|
+
"proper-lockfile": "^4.1.2",
|
|
54
55
|
"react": "^18.3.1",
|
|
56
|
+
"shell-quote": "^1.8.1",
|
|
55
57
|
"yaml": "^2.8.3"
|
|
56
58
|
},
|
|
57
59
|
"optionalDependencies": {
|