@nomad-e/bluma-cli 0.5.3 → 0.5.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/main.js +3 -3
- package/package.json +16 -1
package/dist/main.js
CHANGED
|
@@ -2779,7 +2779,7 @@ import { closeSync as closeSync2, constants as fsConstants, openSync as openSync
|
|
|
2779
2779
|
import noop3 from "lodash-es/noop.js";
|
|
2780
2780
|
import throttle from "lodash-es/throttle.js";
|
|
2781
2781
|
import { ConcurrentRoot } from "react-reconciler/constants.js";
|
|
2782
|
-
import
|
|
2782
|
+
import { onExit } from "signal-exit";
|
|
2783
2783
|
|
|
2784
2784
|
// src/native-ts/yoga-layout/index.ts
|
|
2785
2785
|
import YogaDefault, {
|
|
@@ -10961,7 +10961,7 @@ var Ink = class {
|
|
|
10961
10961
|
trailing: true
|
|
10962
10962
|
});
|
|
10963
10963
|
this.isUnmounted = false;
|
|
10964
|
-
this.unsubscribeExit =
|
|
10964
|
+
this.unsubscribeExit = onExit((() => this.unmount()), {
|
|
10965
10965
|
alwaysLast: false
|
|
10966
10966
|
});
|
|
10967
10967
|
if (options.stdout.isTTY) {
|
|
@@ -30982,7 +30982,7 @@ function renderToolUseMessage7({ args }) {
|
|
|
30982
30982
|
const waitSeconds = typeof args?.wait_seconds === "number" ? args.wait_seconds : null;
|
|
30983
30983
|
if (waitSeconds == null) return null;
|
|
30984
30984
|
return /* @__PURE__ */ jsx34(Box_default, { marginLeft: 1, children: /* @__PURE__ */ jsxs21(Text, { color: BLUMA_TERMINAL.m3OnSurface, children: [
|
|
30985
|
-
"
|
|
30985
|
+
"Waiting ",
|
|
30986
30986
|
/* @__PURE__ */ jsxs21(Text, { color: BLUMA_TERMINAL.m3OnSurface, children: [
|
|
30987
30987
|
waitSeconds,
|
|
30988
30988
|
"s"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nomad-e/bluma-cli",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.5",
|
|
4
4
|
"description": "BluMa independent agent for automation and advanced software engineering.",
|
|
5
5
|
"author": "Alex Fonseca",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -76,23 +76,38 @@
|
|
|
76
76
|
"axios": "^1.16.0",
|
|
77
77
|
"bidi-js": "^1.0.3",
|
|
78
78
|
"chalk": "^5.5.0",
|
|
79
|
+
"class-variance-authority": "^0.7.1",
|
|
80
|
+
"cli-boxes": "^4.0.1",
|
|
79
81
|
"clipboardy": "^5.3.1",
|
|
82
|
+
"clsx": "^2.1.1",
|
|
83
|
+
"code-excerpt": "^4.0.0",
|
|
80
84
|
"diff": "^8.0.2",
|
|
81
85
|
"dotenv": "^16.4.5",
|
|
86
|
+
"emoji-regex": "^10.6.0",
|
|
82
87
|
"env-paths": "^4.0.0",
|
|
88
|
+
"execa": "^9.6.1",
|
|
89
|
+
"get-east-asian-width": "^1.6.0",
|
|
90
|
+
"indent-string": "^5.0.0",
|
|
83
91
|
"jquery": "^4.0.0",
|
|
84
92
|
"js-tiktoken": "^1.0.21",
|
|
85
93
|
"latest-version": "^9.0.0",
|
|
86
94
|
"lodash-es": "^4.18.1",
|
|
87
95
|
"marked": "^16.1.2",
|
|
96
|
+
"next": "^16.2.6",
|
|
88
97
|
"openai": "^4.47.3",
|
|
89
98
|
"react": "^19.2.5",
|
|
90
99
|
"react-dom": "^19.2.5",
|
|
91
100
|
"react-reconciler": "^0.31.0",
|
|
92
101
|
"read-package-up": "^11.0.0",
|
|
93
102
|
"semver": "^7.7.4",
|
|
103
|
+
"signal-exit": "^4.1.0",
|
|
104
|
+
"stack-utils": "^2.0.6",
|
|
105
|
+
"strip-ansi": "^7.2.0",
|
|
106
|
+
"tailwind-merge": "^3.5.0",
|
|
107
|
+
"tailwindcss": "^4.2.4",
|
|
94
108
|
"usehooks-ts": "^3.1.1",
|
|
95
109
|
"uuid": "^9.0.1",
|
|
110
|
+
"wrap-ansi": "^10.0.0",
|
|
96
111
|
"yoga-layout": "^3.2.1"
|
|
97
112
|
},
|
|
98
113
|
"files": [
|