a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
101
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor(lex-cli): drain lsp stderr

Mary 21b08d12 67bfbd7e

+3
+3
packages/lexicons/lex-cli/src/lsp-client.ts
··· 112 112 // are handled by the close/error handlers below 113 113 child.stdin.on('error', () => {}); 114 114 115 + // drain stderr so a chatty server doesn't block on a full pipe buffer 116 + child.stderr.resume(); 117 + 115 118 // #region JSON-RPC framing 116 119 117 120 const pending = new Map<number, PromiseWithResolvers<unknown>>();