Update file executable_install-program
This commit is contained in:
parent
7cfa8a623e
commit
f961b62758
1 changed files with 3 additions and 3 deletions
|
@ -50,13 +50,13 @@ const figures = isUnicodeSupported() ? figuresDefault : figuresFallback
|
||||||
function log(type, label, msg) {
|
function log(type, label, msg) {
|
||||||
let icon, message
|
let icon, message
|
||||||
if (type === 'info') {
|
if (type === 'info') {
|
||||||
icon = `${chalk.cyanBright(figures.pointer)} ${chalk.bold.white.bgCyanBright(' ' + label + ' ')}`
|
icon = `${chalk.cyanBright(figures.pointer)} ${chalk.bold.white.bgCyan(' ' + label.padStart(label.length / 2 + 4, ' ').padEnd(label.length / 2 + 4, ' ') + ' ')}`
|
||||||
message = wrapMessage(msg)
|
message = wrapMessage(msg)
|
||||||
} else if (type === 'star') {
|
} else if (type === 'star') {
|
||||||
icon = `${chalk.yellowBright(figures.star)} ${chalk.bold.black.bgYellowBright(' ' + label + ' ')}`
|
icon = `${chalk.yellow(figures.star)} ${chalk.bold.black.bgYellow(' ' + label.padStart(label.length / 2 + 4, ' ').padEnd(label.length / 2 + 4, ' ') + ' ')}`
|
||||||
message = wrapMessage(msg)
|
message = wrapMessage(msg)
|
||||||
} else if (type === 'success') {
|
} else if (type === 'success') {
|
||||||
icon = `${chalk.greenBright(figures.play)} ${chalk.bold.white.bgGreenBright(' ' + label + ' ')}`
|
icon = `${chalk.greenBright(figures.play)} ${chalk.bold.white.bgGreenBright(' ' + label.padStart(label.length / 2 + 4, ' ').padEnd(label.length / 2 + 4, ' ') + ' ')}`
|
||||||
message = wrapMessage(msg)
|
message = wrapMessage(msg)
|
||||||
} else if (type === 'warn') {
|
} else if (type === 'warn') {
|
||||||
icon = `${chalk.yellowBright(figures.lozenge)} ${chalk.bold.black.bgYellowBright(' WARNING ')}`
|
icon = `${chalk.yellowBright(figures.lozenge)} ${chalk.bold.black.bgYellowBright(' WARNING ')}`
|
||||||
|
|
Loading…
Reference in a new issue