From 980091cbc2a809690dbd401c16ec3ac34da56083 Mon Sep 17 00:00:00 2001 From: Gal Zahavi <38544478+galz10@users.noreply.github.com> Date: Thu, 14 Aug 2025 13:40:12 -0700 Subject: feat(core): refactor shell execution to use node-pty (#6088) --- esbuild.config.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'esbuild.config.js') diff --git a/esbuild.config.js b/esbuild.config.js index 0cb8e0fa..bf83132f 100644 --- a/esbuild.config.js +++ b/esbuild.config.js @@ -21,7 +21,14 @@ esbuild outfile: 'bundle/gemini.js', platform: 'node', format: 'esm', - external: [], + external: [ + '@lydell/node-pty', + '@lydell/node-pty-darwin-arm64', + '@lydell/node-pty-darwin-x64', + '@lydell/node-pty-linux-x64', + '@lydell/node-pty-win32-arm64', + '@lydell/node-pty-win32-x64', + ], alias: { 'is-in-ci': path.resolve( __dirname, -- cgit v1.2.3