From a577483e883e6b526b08cf57007249252fe62d95 Mon Sep 17 00:00:00 2001 From: Agustin Mendez Date: Thu, 8 Oct 2020 19:04:31 -0300 Subject: [PATCH] Update build.ts --- src/commands/build.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/build.ts b/src/commands/build.ts index 51498c71..7873ea44 100644 --- a/src/commands/build.ts +++ b/src/commands/build.ts @@ -30,7 +30,7 @@ export async function main(): Promise { const workDir = process.cwd() if (await isTypescriptProject(workDir)) { - await buildTypescript(workDir, !process.env.DEBUG, !!args['--watch']) + await buildTypescript(workDir, false /* silent=false build should always inform errors */, !!args['--watch']) } return 0