From a3897b18290b9e3265e4cb25dacec93c26941cd2 Mon Sep 17 00:00:00 2001 From: Jeff Dickey <216188+jdxcode@users.noreply.github.com> Date: Wed, 29 Aug 2018 08:37:45 -0700 Subject: [PATCH] fix: hide yarn output when not found --- src/generators/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generators/app.ts b/src/generators/app.ts index 10431df73..5fce12561 100644 --- a/src/generators/app.ts +++ b/src/generators/app.ts @@ -20,7 +20,7 @@ const rmf = isWindows ? 'rimraf' : 'rm -f' let hasYarn = false try { - execSync('yarn -v') + execSync('yarn -v', {stdio: 'ignore'}) hasYarn = true } catch {} // function stringToArray(s: string) {