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
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  DEFAULT_PORT,
4
4
  startServer
5
- } from "./chunk-2Q6Z6NQH.js";
5
+ } from "./chunk-YPG2D6CV.js";
6
6
 
7
7
  // src/bin.ts
8
8
  import { createInterface } from "readline";
@@ -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 = 64 * 1024;
226
- var TAIL_MAX_LINES = 200;
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
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  startServer
3
- } from "./chunk-2Q6Z6NQH.js";
3
+ } from "./chunk-YPG2D6CV.js";
4
4
  export {
5
5
  startServer
6
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codex-blocker",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "Block distracting websites unless Codex is actively running inference. Forked from Theo Browne's (T3) Claude Blocker",
5
5
  "author": "Adam Blumoff ",
6
6
  "repository": {