From ef09361539102fd1eea9c2439594fc5275483614 Mon Sep 17 00:00:00 2001 From: Richard Moore Date: Wed, 25 Nov 2020 15:34:05 -0500 Subject: [PATCH] build: updated build scripts. --- misc/admin/lib/cmds/bundle-testcases.js | 2 +- misc/admin/lib/log.js | 2 +- misc/admin/src.ts/cmds/bundle-testcases.ts | 2 +- misc/admin/src.ts/log.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/misc/admin/lib/cmds/bundle-testcases.js b/misc/admin/lib/cmds/bundle-testcases.js index e2455d30d..f14c0c014 100644 --- a/misc/admin/lib/cmds/bundle-testcases.js +++ b/misc/admin/lib/cmds/bundle-testcases.js @@ -49,7 +49,7 @@ const config = { else { data[key] = content.toString("base64"); } - console.log(` - Added ${key} (${data[key].length} bytes)`); + //console.log(` - Added ${ key } (${ data[key].length } bytes)`); }); }); utils_1.mkdir(path_2.resolve("packages/testcases/lib")); diff --git a/misc/admin/lib/log.js b/misc/admin/lib/log.js index 28b102b91..aa85c73bf 100644 --- a/misc/admin/lib/log.js +++ b/misc/admin/lib/log.js @@ -37,7 +37,7 @@ const colorSequences = { magenta: "\x1b[35m", red: "\x1b[31m", yellow: "\x1b[33m", - bold: "" + bold: "\x1b[97m" }; function getColor(color) { if (!color || color === "normal") { diff --git a/misc/admin/src.ts/cmds/bundle-testcases.ts b/misc/admin/src.ts/cmds/bundle-testcases.ts index 4930f5d33..e0c5d894d 100644 --- a/misc/admin/src.ts/cmds/bundle-testcases.ts +++ b/misc/admin/src.ts/cmds/bundle-testcases.ts @@ -42,7 +42,7 @@ const config = { } else { data[key] = content.toString("base64"); } - console.log(` - Added ${ key } (${ data[key].length } bytes)`); + //console.log(` - Added ${ key } (${ data[key].length } bytes)`); }); }); diff --git a/misc/admin/src.ts/log.ts b/misc/admin/src.ts/log.ts index 13c05b52a..1c04b09c1 100644 --- a/misc/admin/src.ts/log.ts +++ b/misc/admin/src.ts/log.ts @@ -42,7 +42,7 @@ const colorSequences: Record = { magenta: "\x1b[35m", red: "\x1b[31m", yellow: "\x1b[33m", - bold: "" + bold: "\x1b[97m" }; function getColor(color?: string): string {