From ffc836bac0cdea684ea91f958ac8298d4ee4b07d Mon Sep 17 00:00:00 2001 From: liruifengv Date: Thu, 31 Oct 2024 15:51:39 +0800 Subject: [PATCH] Fix cli command typo (#12342) Co-authored-by: Emanuele Stoppa --- .changeset/mighty-pants-rush.md | 5 +++++ packages/astro/src/cli/index.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/mighty-pants-rush.md diff --git a/.changeset/mighty-pants-rush.md b/.changeset/mighty-pants-rush.md new file mode 100644 index 000000000000..9eb14bfa28d0 --- /dev/null +++ b/.changeset/mighty-pants-rush.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +Fixes a typo in the command name of the CLI diff --git a/packages/astro/src/cli/index.ts b/packages/astro/src/cli/index.ts index 5f1cc75a95f2..a963b84143dd 100644 --- a/packages/astro/src/cli/index.ts +++ b/packages/astro/src/cli/index.ts @@ -84,7 +84,7 @@ function resolveCommand(flags: yargs.Arguments): CLICommand { 'db', 'info', 'login', - 'loutout', + 'logout', 'link', 'init', ]);