0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00

[ci] format

This commit is contained in:
natemoo-re 2023-08-03 21:05:44 +00:00 committed by astrobot-houston
parent 89cd4b877e
commit 53e824fe99

View file

@ -93,9 +93,9 @@ export const getVersion = () =>
export const log = (message: string) => stdout.write(message + '\n'); export const log = (message: string) => stdout.write(message + '\n');
export const banner = async (version: string) => export const banner = async (version: string) =>
log( log(
`\n${label('astro', color.bgGreen, color.black)} ${version ? color.green( `\n${label('astro', color.bgGreen, color.black)} ${
color.bold(`v${version}`) version ? color.green(color.bold(`v${version}`)) : ''
): ''} ${color.bold('Launch sequence initiated.')}` } ${color.bold('Launch sequence initiated.')}`
); );
export const info = async (prefix: string, text: string) => { export const info = async (prefix: string, text: string) => {