From 51db086fb24643b6652a390be022f29ce7e77fea Mon Sep 17 00:00:00 2001 From: Orta Therox Date: Sun, 3 May 2020 13:10:07 -0400 Subject: [PATCH] Extends the error messaging --- packages/utils/src/process.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/utils/src/process.ts b/packages/utils/src/process.ts index 04d83f492a..b168935f4f 100644 --- a/packages/utils/src/process.ts +++ b/packages/utils/src/process.ts @@ -85,7 +85,7 @@ export function runWithChildProcesses({ for (const child of allChildren) { child.kill(); } - reject(new Error("Parsing failed.")); + reject(new Error(`Parsing failed \nInputs: ${inputs}\nCLI Args: ${commandLineArgs}\n\n`)); } }); }