Merge branch 'main' into main

This commit is contained in:
Nattapong Tapachoom 2026-01-28 10:47:16 +07:00 committed by GitHub
commit fbb257f08d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 12 deletions

View File

@ -65,12 +65,12 @@ export function formatCliBannerLine(version: string, options: BannerOptions = {}
} }
const LOBSTER_ASCII = [ const LOBSTER_ASCII = [
"░████░█░░░░░█████░█░░░█░███░░████░░████░░▀█▀", "▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄",
"█░░░░░█░░░░░█░░░█░█░█░█░█░░█░█░░░█░█░░░█░░█░", "██░▄▀▄░██░▄▄▄░██░████▄▄░▄▄██░▄▄▀██░▄▄▄░█▄▄░▄▄██",
"█░░░░░█░░░░░█████░█░█░█░█░░█░████░░█░░░█░░█░", "██░█░█░██░███░██░██████░████░▄▄▀██░███░███░████",
"█░░░░░█░░░░░█░░░█░█░█░█░█░░█░█░░█░░█░░░█░░█░", "██░███░██░▀▀▀░██░▀▀░███░████░▀▀░██░▀▀▀░███░████",
"░████░█████░█░░░█░░█░█░░███░░████░░░███░░░█░", "▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀",
" 🦞 FRESH DAILY 🦞", " 🦞 FRESH DAILY 🦞 ",
]; ];
export function formatCliBannerArt(options: BannerOptions = {}): string { export function formatCliBannerArt(options: BannerOptions = {}): string {

View File

@ -64,12 +64,12 @@ export function randomToken(): string {
export function printWizardHeader(runtime: RuntimeEnv) { export function printWizardHeader(runtime: RuntimeEnv) {
const header = [ const header = [
"░████░█░░░░░█████░█░░░█░███░░████░░████░░▀█▀", "▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄",
"█░░░░░█░░░░░█░░░█░█░█░█░█░░█░█░░░█░█░░░█░░█░", "██░▄▀▄░██░▄▄▄░██░████▄▄░▄▄██░▄▄▀██░▄▄▄░█▄▄░▄▄██",
"█░░░░░█░░░░░█████░█░█░█░█░░█░████░░█░░░█░░█░", "██░█░█░██░███░██░██████░████░▄▄▀██░███░███░████",
"█░░░░░█░░░░░█░░░█░█░█░█░█░░█░█░░█░░█░░░█░░█░", "██░███░██░▀▀▀░██░▀▀░███░████░▀▀░██░▀▀▀░███░████",
"░████░█████░█░░░█░░█░█░░███░░████░░░███░░░█░", "▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀",
" 🦞 FRESH DAILY 🦞", " 🦞 FRESH DAILY 🦞 ",
].join("\n"); ].join("\n");
runtime.log(header); runtime.log(header);
} }