Skip to content

Commit

Permalink
feat: change script output format (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
mym0404 committed Mar 14, 2024
2 parents 848fff2 + 1dee044 commit ca831e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/theme-gen.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ function print(...args) {
}

function printSuccess(...args) {
echo(`\x1B[36m\x1B[46m✅ [${_printTag}]`, ...args, '\x1B[0m');
echo(`✅ [${_printTag}]`, ...args);
}

function printError(...args) {
echo(`\x1B[31m\x1b[43m⚠️ [${_printTag}]`, ...args, '\x1B[0m');
echo(`⚠️ [${_printTag}]`, ...args);
}

const tKey = {};
Expand Down

0 comments on commit ca831e5

Please sign in to comment.