From 45de18c9de321a7f770bd46dc978dc8f788c27ae Mon Sep 17 00:00:00 2001 From: Ryan Huang Date: Tue, 23 Apr 2024 16:45:08 -0400 Subject: [PATCH] Style --- src/createClient.ts | 3 +-- src/subcommands/load.ts | 4 ++-- src/subcommands/unload.ts | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/createClient.ts b/src/createClient.ts index 8828460..59ce97d 100644 --- a/src/createClient.ts +++ b/src/createClient.ts @@ -19,8 +19,7 @@ export async function createClient(logger: SimpleLogger) { To start the server, run the following command: - ${chalk.yellow("lms server start ")} - + ${chalk.yellow("lms server start ")}${"\n"} `, ); process.exit(1); diff --git a/src/subcommands/load.ts b/src/subcommands/load.ts index 4a746da..95ff034 100644 --- a/src/subcommands/load.ts +++ b/src/subcommands/load.ts @@ -152,7 +152,7 @@ export const load = command({ Note, you need to provide the full model path. For example: - ${chalk.yellowBright(`lms load --exact "${chalk.yellow(shortestName)}"`)}${"\n"} + ${chalk.yellowBright(`lms load --exact "${chalk.yellow(shortestName)}"`)} `, ).message, ); @@ -205,7 +205,7 @@ export const load = command({ To select a model interactively, remove the ${chalk.yellowBright("--yes")} flag: - ${chalk.yellowBright("lms load")}${"\n"} + ${chalk.yellowBright("lms load")} `, ).message, ); diff --git a/src/subcommands/unload.ts b/src/subcommands/unload.ts index 65d9a09..a7026ef 100644 --- a/src/subcommands/unload.ts +++ b/src/subcommands/unload.ts @@ -83,7 +83,7 @@ export const unload = command({ To see a list of loaded models, run: - ${chalk.yellowBright("lms ps")}${"\n"} + ${chalk.yellowBright("lms ps")} `, ).message, );