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 <noreply@anthropic.com>
This commit is contained in:
Test User
2026-01-18 19:35:55 +01:00
parent 4637a1a927
commit 95f7f222f6
+3 -1
View File
@@ -35,7 +35,9 @@ export default defineConfig({
'@sentry/utils',
'@opentelemetry/instrumentation',
'debug',
'ms'
'ms',
// Minimatch for glob pattern matching in worktree handlers
'minimatch'
]
})],
build: {