Skip to content

Commit

Permalink
build: updated build scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Nov 25, 2020
1 parent 6e36447 commit ef09361
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion misc/admin/lib/cmds/bundle-testcases.js
Original file line number Diff line number Diff line change
Expand Up @@ -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"));
Expand Down
2 changes: 1 addition & 1 deletion misc/admin/lib/log.js
Original file line number Diff line number Diff line change
Expand Up @@ -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") {
Expand Down
2 changes: 1 addition & 1 deletion misc/admin/src.ts/cmds/bundle-testcases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)`);
});
});

Expand Down
2 changes: 1 addition & 1 deletion misc/admin/src.ts/log.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const colorSequences: Record<string, string> = {
magenta: "\x1b[35m",
red: "\x1b[31m",
yellow: "\x1b[33m",
bold: ""
bold: "\x1b[97m"
};

function getColor(color?: string): string {
Expand Down

0 comments on commit ef09361

Please sign in to comment.