mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-06-26 18:26:38 +00:00
fix: remove monorepo
This commit is contained in:
11
app/utils/terminal.ts
Normal file
11
app/utils/terminal.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
const reset = '\x1b[0m';
|
||||
|
||||
export const escapeCodes = {
|
||||
reset,
|
||||
clear: '\x1b[g',
|
||||
red: '\x1b[1;31m',
|
||||
};
|
||||
|
||||
export const coloredText = {
|
||||
red: (text: string) => `${escapeCodes.red}${text}${reset}`,
|
||||
};
|
||||
Reference in New Issue
Block a user