@nomad-e/bluma-cli 0.0.8 → 0.0.9
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/main.js +1 -1
- package/package.json +8 -1
package/dist/main.js
CHANGED
|
@@ -2470,7 +2470,7 @@ var AppComponent = ({ eventBus: eventBus2, sessionId: sessionId2 }) => {
|
|
|
2470
2470
|
}
|
|
2471
2471
|
);
|
|
2472
2472
|
} else if (parsed.type === "assistant_message" && parsed.content) {
|
|
2473
|
-
newComponent = /* @__PURE__ */ jsx11(Box11, { paddingX: 1, marginBottom: 1, children: /* @__PURE__ */ jsx11(Text10, { color: "blue", children:
|
|
2473
|
+
newComponent = /* @__PURE__ */ jsx11(Box11, { paddingX: 1, marginBottom: 1, flexDirection: "column", children: String(parsed.content).split("").map((line, idx) => /* @__PURE__ */ jsx11(Text10, { color: "blue", children: line === "" ? " " : line }, idx)) });
|
|
2474
2474
|
}
|
|
2475
2475
|
if (newComponent) {
|
|
2476
2476
|
setHistory((prev) => [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nomad-e/bluma-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "BluMa independent agent for automation and advanced software engineering.",
|
|
5
5
|
"author": "Alex Fonseca",
|
|
6
6
|
"license": "MIT",
|
|
@@ -8,12 +8,19 @@
|
|
|
8
8
|
"bluma": "dist/main.js"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
+
"@babel/preset-env": "^7.28.0",
|
|
12
|
+
"@babel/preset-react": "^7.27.1",
|
|
13
|
+
"@babel/preset-typescript": "^7.27.1",
|
|
11
14
|
"@types/diff": "^7.0.2",
|
|
15
|
+
"@types/jest": "^30.0.0",
|
|
12
16
|
"@types/node": "^20.14.2",
|
|
13
17
|
"@types/react": "^18.3.3",
|
|
14
18
|
"@types/uuid": "^9.0.8",
|
|
19
|
+
"babel-jest": "^30.0.5",
|
|
15
20
|
"esbuild": "^0.21.4",
|
|
16
21
|
"esbuild-plugin-node-externals": "^1.0.1",
|
|
22
|
+
"ink-testing-library": "^4.0.0",
|
|
23
|
+
"jest": "^30.0.5",
|
|
17
24
|
"nodemon": "^3.1.10",
|
|
18
25
|
"react": "^18.3.1",
|
|
19
26
|
"ts-node-dev": "^2.0.0",
|