From 102905bbc7ef058e12e36b917b3e06d7e0e82060 Mon Sep 17 00:00:00 2001 From: "N. Taylor Mullen" Date: Thu, 13 Nov 2025 00:20:14 -0800 Subject: [PATCH] feat: normalize verticality (#12991) --- packages/cli/src/ui/components/AsciiArt.ts | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/packages/cli/src/ui/components/AsciiArt.ts b/packages/cli/src/ui/components/AsciiArt.ts index 6ca17d51a1..e1cb5e058b 100644 --- a/packages/cli/src/ui/components/AsciiArt.ts +++ b/packages/cli/src/ui/components/AsciiArt.ts @@ -4,10 +4,6 @@ * SPDX-License-Identifier: Apache-2.0 */ -function flipAsciiArt(art: string): string { - return art.split('\n').reverse().join('\n'); -} - export const shortAsciiLogo = ` █████████ ██████████ ██████ ██████ █████ ██████ █████ █████ ███░░░░░███░░███░░░░░█░░██████ ██████ ░░███ ░░██████ ░░███ ░░███ @@ -41,7 +37,7 @@ export const tinyAsciiLogo = ` ░░░ ░░░░░░░░░ `; -const rawShortAsciiLogoIde = ` +export const shortAsciiLogoIde = ` ░░░░░░░░░ ░░░░░░░░░░ ░░░░░░ ░░░░░░ ░░░░░ ░░░░░░ ░░░░░ ░░░░░ ░░░ ░░░ ░░░ ░░░░░░ ░░░░░░ ░░░ ░░░░░░ ░░░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ @@ -54,9 +50,7 @@ const rawShortAsciiLogoIde = ` █████████ ██████████ ███ ███ █████ ███ █████ █████ `; -export const shortAsciiLogoIde = flipAsciiArt(rawShortAsciiLogoIde); - -const rawLongAsciiLogoIde = ` +export const longAsciiLogoIde = ` ░░░ ░░░░░░░░░ ░░░░░░░░░░ ░░░░░░ ░░░░░░ ░░░░░ ░░░░░░ ░░░░░ ░░░░░ ░░░ ░░░ ░░░ ░░░ ░░░░░░ ░░░░░░ ░░░ ░░░░░░ ░░░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ @@ -69,9 +63,7 @@ const rawLongAsciiLogoIde = ` ███ █████████ ██████████ ███ ███ █████ ███ █████ █████ `; -export const longAsciiLogoIde = flipAsciiArt(rawLongAsciiLogoIde); - -const rawTinyAsciiLogoIde = ` +export const tinyAsciiLogoIde = ` ░░░ ░░░░░░░░░ ░░░ ░░░ ░░░ ░░░ ░░░ @@ -83,5 +75,3 @@ const rawTinyAsciiLogoIde = ` ███ ███ ███ ███ █████████ `; - -export const tinyAsciiLogoIde = flipAsciiArt(rawTinyAsciiLogoIde);