scream-code 0.9.5 → 0.9.7
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.
|
@@ -124703,7 +124703,7 @@ function optionalBuildString(value) {
|
|
|
124703
124703
|
return typeof value === "string" && value.length > 0 ? value : void 0;
|
|
124704
124704
|
}
|
|
124705
124705
|
const SCREAM_BUILD_INFO = {
|
|
124706
|
-
version: optionalBuildString("0.9.
|
|
124706
|
+
version: optionalBuildString("0.9.7"),
|
|
124707
124707
|
channel: optionalBuildString(""),
|
|
124708
124708
|
commit: optionalBuildString(""),
|
|
124709
124709
|
buildTarget: optionalBuildString("darwin-arm64")
|
|
@@ -145229,7 +145229,7 @@ function createRenderBatcher(doRender) {
|
|
|
145229
145229
|
batchDepth--;
|
|
145230
145230
|
if (batchDepth === 0 && batchNeedsRender) {
|
|
145231
145231
|
batchNeedsRender = false;
|
|
145232
|
-
scheduleRender(
|
|
145232
|
+
scheduleRender(pendingForce);
|
|
145233
145233
|
}
|
|
145234
145234
|
}
|
|
145235
145235
|
}
|
|
@@ -149194,7 +149194,9 @@ var ScreamTUI = class {
|
|
|
149194
149194
|
}
|
|
149195
149195
|
clearTranscriptAndRedraw() {
|
|
149196
149196
|
this.sessionEventHandler.stopAllMcpServerStatusSpinners();
|
|
149197
|
+
this.state.terminal.write("\x1B[3J");
|
|
149197
149198
|
this.transcriptController.clearAndRedraw();
|
|
149199
|
+
this.state.ui.requestRender(true);
|
|
149198
149200
|
}
|
|
149199
149201
|
showStatus(message, color) {
|
|
149200
149202
|
this.transcriptController.showStatus(message, color);
|
package/dist/main.mjs
CHANGED
|
@@ -6,7 +6,7 @@ const __dirname = __cjsShimDirname(__filename);
|
|
|
6
6
|
import "./suppress-sqlite-warning-C2VB0doZ.mjs";
|
|
7
7
|
//#region src/main.ts
|
|
8
8
|
try {
|
|
9
|
-
(await import("./app-
|
|
9
|
+
(await import("./app-0DJZPbGz.mjs")).main();
|
|
10
10
|
} catch (error) {
|
|
11
11
|
process.stderr.write(`${error instanceof Error ? error.stack ?? error.message : String(error)}\n`);
|
|
12
12
|
process.exit(1);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scream-code",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.7",
|
|
4
4
|
"description": "A terminal-native AI agent for builders",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "ScreamCli",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"smoke": "node dist/main.mjs --version"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@earendil-works/pi-tui": "^0.80.
|
|
60
|
+
"@earendil-works/pi-tui": "^0.80.6",
|
|
61
61
|
"@mariozechner/clipboard": "^0.3.2",
|
|
62
62
|
"chalk": "^5.4.1",
|
|
63
63
|
"cli-highlight": "^2.1.11",
|