codex-blocker 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/bin.js
CHANGED
|
@@ -222,8 +222,8 @@ function parseCodexLine(line, sessionId) {
|
|
|
222
222
|
|
|
223
223
|
// src/codex.ts
|
|
224
224
|
var DEFAULT_CODEX_HOME = join(homedir(), ".codex");
|
|
225
|
-
var TAIL_MAX_BYTES =
|
|
226
|
-
var TAIL_MAX_LINES =
|
|
225
|
+
var TAIL_MAX_BYTES = 1024 * 1024;
|
|
226
|
+
var TAIL_MAX_LINES = 2e3;
|
|
227
227
|
async function listRolloutFiles(root) {
|
|
228
228
|
const files = [];
|
|
229
229
|
const entries = await fs.readdir(root, { withFileTypes: true });
|
package/dist/server.js
CHANGED
package/package.json
CHANGED