From dd12a4eb36e9a57d7efe95ff1c567eb7779e5b01 Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Tue, 10 May 2022 12:20:19 +0200 Subject: [PATCH] fix build --- build/lib/tsb/builder.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/lib/tsb/builder.ts b/build/lib/tsb/builder.ts index 2f8753dd1199a..d5bec6ee97b0d 100644 --- a/build/lib/tsb/builder.ts +++ b/build/lib/tsb/builder.ts @@ -360,7 +360,7 @@ export function createTypeScriptBuilder(config: IConfiguration, projectFile: str const MB = 1024 * 1024; log('[tsb]', 'time:', colors.yellow((Date.now() - t1) + 'ms'), - 'mem:', colors.cyan(Math.ceil(headNow / MB) + 'MB'), colors.bgcyan('delta: ' + Math.ceil((headNow - headUsed) / MB)) + 'mem:', colors.cyan(Math.ceil(headNow / MB) + 'MB'), colors.bgCyan('delta: ' + Math.ceil((headNow - headUsed) / MB)) ); headUsed = headNow; }