mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
[ci] format
This commit is contained in:
parent
89cd4b877e
commit
53e824fe99
1 changed files with 3 additions and 3 deletions
|
@ -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) => {
|
||||||
|
|
Loading…
Reference in a new issue