diff options
Diffstat (limited to 'commands/list.js')
-rw-r--r-- | commands/list.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/commands/list.js b/commands/list.js index c40cc23..9dc0020 100644 --- a/commands/list.js +++ b/commands/list.js @@ -40,17 +40,17 @@ module.exports = async () => { } if (pack.platforms.windows === 2 && pack.platforms.linux === 2 && pack.platforms.mac === 2) { - platforms[pack.id] = c.blue("all"); + platforms[pack.id] = c.cyan("all"); } else if (pack.platforms.windows === 1 && pack.platforms.linux === 1 && pack.platforms.mac === 1) { platforms[pack.id] = c.yellow("all"); } else { platforms[pack.id] = ""; if (pack.platforms.windows === 1) { platforms[pack.id] += c.yellow("win32") + "," } - if (pack.platforms.windows === 2) { platforms[pack.id] += c.blue("win32") + "," } + if (pack.platforms.windows === 2) { platforms[pack.id] += c.cyan("win32") + "," } if (pack.platforms.linux === 1) { platforms[pack.id] += c.yellow("linux") + "," } - if (pack.platforms.linux === 2) { platforms[pack.id] += c.blue("linux") + "," } - if (pack.platforms.mac === 1) { platforms[pack.id] += c.yellow("darwin") + "," } - if (pack.platforms.mac === 2) { platforms[pack.id] += c.blue("darwin") + "," } + if (pack.platforms.linux === 2) { platforms[pack.id] += c.cyan("linux") + "," } + if (pack.platforms.mac === 1) { platforms[pack.id] += c.yellow("macos") + "," } + if (pack.platforms.mac === 2) { platforms[pack.id] += c.cyan("macos") + "," } if (platforms[pack.id].endsWith(",")) { platforms[pack.id] = platforms[pack.id].substring(0, platforms[pack.id].length - 1) } } |