build: updated build scripts.

This commit is contained in:
Richard Moore 2020-11-25 15:34:05 -05:00
parent 6e36447aa0
commit ef09361539
No known key found for this signature in database
GPG Key ID: 665176BE8E9DC651
4 changed files with 4 additions and 4 deletions

@ -49,7 +49,7 @@ const config = {
else { else {
data[key] = content.toString("base64"); 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")); utils_1.mkdir(path_2.resolve("packages/testcases/lib"));

@ -37,7 +37,7 @@ const colorSequences = {
magenta: "\x1b[35m", magenta: "\x1b[35m",
red: "\x1b[31m", red: "\x1b[31m",
yellow: "\x1b[33m", yellow: "\x1b[33m",
bold: "" bold: "\x1b[97m"
}; };
function getColor(color) { function getColor(color) {
if (!color || color === "normal") { if (!color || color === "normal") {

@ -42,7 +42,7 @@ const config = {
} else { } else {
data[key] = content.toString("base64"); data[key] = content.toString("base64");
} }
console.log(` - Added ${ key } (${ data[key].length } bytes)`); //console.log(` - Added ${ key } (${ data[key].length } bytes)`);
}); });
}); });

@ -42,7 +42,7 @@ const colorSequences: Record<string, string> = {
magenta: "\x1b[35m", magenta: "\x1b[35m",
red: "\x1b[31m", red: "\x1b[31m",
yellow: "\x1b[33m", yellow: "\x1b[33m",
bold: "" bold: "\x1b[97m"
}; };
function getColor(color?: string): string { function getColor(color?: string): string {