From ebe5d39c37484eb3b9e6b69ca95bcc883601acfb Mon Sep 17 00:00:00 2001 From: Johannes Date: Tue, 3 Feb 2026 12:46:04 +0100 Subject: [PATCH] better error handling --- build/gulpfile.vscode.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/gulpfile.vscode.ts b/build/gulpfile.vscode.ts index 06fcd7b0f1b..2c78ca9a3e6 100644 --- a/build/gulpfile.vscode.ts +++ b/build/gulpfile.vscode.ts @@ -175,7 +175,7 @@ function runEsbuildBundle(outDir: string, minify: boolean, nls: boolean, target: if (code === 0) { resolve(); } else { - reject(new Error(`esbuild bundle failed with exit code ${code}`)); + reject(new Error(`esbuild bundle failed with exit code ${code} (outDir: ${outDir}, minify: ${minify}, nls: ${nls}, target: ${target})`)); } }); });