From 95f7f222f651a63d5c5bdf9d4d92db63bf293496 Mon Sep 17 00:00:00 2001 From: Test User Date: Sun, 18 Jan 2026 19:35:55 +0100 Subject: [PATCH] build: add minimatch to externalized dependencies Add minimatch to the Vite externalize list for proper bundling in the main process. Minimatch is used for glob pattern matching in worktree handlers. Co-Authored-By: Claude Opus 4.5 --- apps/frontend/electron.vite.config.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/frontend/electron.vite.config.ts b/apps/frontend/electron.vite.config.ts index 6ceaa51f..a430dd76 100644 --- a/apps/frontend/electron.vite.config.ts +++ b/apps/frontend/electron.vite.config.ts @@ -35,7 +35,9 @@ export default defineConfig({ '@sentry/utils', '@opentelemetry/instrumentation', 'debug', - 'ms' + 'ms', + // Minimatch for glob pattern matching in worktree handlers + 'minimatch' ] })], build: {