rebuilt css files, For some reason was having issues with the line endings, hopefully the editorconfig will fix it.

This commit is contained in:
Yohn 2024-12-03 14:27:56 -05:00
parent 137d6bf55e
commit 7ce5b5c578
244 changed files with 6471 additions and 2306 deletions

View file

@ -133,9 +133,11 @@ themeColors.forEach((themeColor, colorIndex) => {
// Write the file
fs.writeFileSync(path.join(cssFoldername, `${version.name}.${themeColor}.css`), result.css);
// Clear the console
process.stdout.clearLine();
process.stdout.cursorTo(0);
// Clear the console - only if running in a TTY
if (process.stdout.isTTY) {
process.stdout.clearLine();
process.stdout.cursorTo(0);
}
});
});