agenthud 0.11.3 → 0.11.4
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
CHANGED
|
@@ -116,9 +116,6 @@ function getVersion() {
|
|
|
116
116
|
);
|
|
117
117
|
return packageJson.version;
|
|
118
118
|
}
|
|
119
|
-
function clearScreen() {
|
|
120
|
-
console.clear();
|
|
121
|
-
}
|
|
122
119
|
function parseLocalMidnight(dateStr) {
|
|
123
120
|
if (dateStr === "today") {
|
|
124
121
|
const now = /* @__PURE__ */ new Date();
|
|
@@ -4159,7 +4156,5 @@ if (options.scopeToCwd) {
|
|
|
4159
4156
|
if (options.mode === "watch") {
|
|
4160
4157
|
installAltScreenCleanup();
|
|
4161
4158
|
enterAltScreen();
|
|
4162
|
-
} else {
|
|
4163
|
-
if (options.mode === "once") clearScreen();
|
|
4164
4159
|
}
|
|
4165
4160
|
render(React.createElement(App, { mode: options.mode, scopeToProject }));
|
package/package.json
CHANGED