mirror of
https://github.com/picocss/pico.git
synced 2025-04-20 16:46:14 -04:00
rebuilt css files, For some reason was having issues with the line endings, hopefully the editorconfig will fix it.
This commit is contained in:
parent
137d6bf55e
commit
7ce5b5c578
244 changed files with 6471 additions and 2306 deletions
|
@ -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);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue