fluxflow-cli 3.3.1 → 3.3.2
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/fluxflow.js +6 -0
- package/package.json +1 -1
package/dist/fluxflow.js
CHANGED
|
@@ -18791,6 +18791,8 @@ ${timestamp}` };
|
|
|
18791
18791
|
setActiveSubagents(subagentProgress.map((sa) => ({ ...sa })));
|
|
18792
18792
|
},
|
|
18793
18793
|
onExecStart: (cmd) => {
|
|
18794
|
+
flushTypewriterNow();
|
|
18795
|
+
commitActiveStreamingMessage();
|
|
18794
18796
|
setActiveCommand(cmd);
|
|
18795
18797
|
setExecOutput("");
|
|
18796
18798
|
},
|
|
@@ -18858,6 +18860,8 @@ ${timestamp}` };
|
|
|
18858
18860
|
});
|
|
18859
18861
|
},
|
|
18860
18862
|
onAskUser: async (question, options) => {
|
|
18863
|
+
flushTypewriterNow();
|
|
18864
|
+
commitActiveStreamingMessage();
|
|
18861
18865
|
return new Promise((resolve) => {
|
|
18862
18866
|
let resolvedFlag = false;
|
|
18863
18867
|
setPendingAsk({
|
|
@@ -19075,6 +19079,8 @@ Selection: ${val}`,
|
|
|
19075
19079
|
continue;
|
|
19076
19080
|
}
|
|
19077
19081
|
if (packet.type === "exec_start") {
|
|
19082
|
+
flushTypewriterNow();
|
|
19083
|
+
commitActiveStreamingMessage();
|
|
19078
19084
|
continue;
|
|
19079
19085
|
}
|
|
19080
19086
|
if (packet.type === "liveTokens") {
|