From 82e179730e2d79d162aacf06403ca6a5341d3c97 Mon Sep 17 00:00:00 2001 From: Joseph Garrone Date: Tue, 9 Jul 2024 14:59:59 +0200 Subject: [PATCH] Fix error related to npm config get --- src/bin/shared/buildContext.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/shared/buildContext.ts b/src/bin/shared/buildContext.ts index f0356abb..e24046bc 100644 --- a/src/bin/shared/buildContext.ts +++ b/src/bin/shared/buildContext.ts @@ -575,7 +575,7 @@ export function getBuildContext(params: { try { child_process.execSync("npm config get", { cwd: dirPath, - stdio: "ignore" + stdio: "pipe" }); } catch (error) { if (String(error).includes("ENOWORKSPACES")) {