From bc2f6e60f46679f49172338408e3b5a4939b78d6 Mon Sep 17 00:00:00 2001 From: lzkb Date: Mon, 29 Apr 2024 19:54:03 -0700 Subject: [PATCH] [eas-cli] Show the -s, --sso option in the login command help. (#2353) * Show the -s, --sso option in the login command help. * Update CHANGELOG --- CHANGELOG.md | 1 + packages/eas-cli/README.md | 5 ++++- packages/eas-cli/src/commands/account/login.ts | 1 - 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 736db424cf..9f992120f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ This is the log of notable changes to EAS CLI and related packages. ### ๐Ÿ› Bug fixes - Improve login info message for other login options. ([#2352](https://github.com/expo/eas-cli/pull/2352) by [@wschurman](https://github.com/wschurman)) +- Show the -s, --sso option in the login command help. ([#2353](https://github.com/expo/eas-cli/pull/2353) by [@lzkb](https://github.com/lzkb)) ### ๐Ÿงน Chores diff --git a/packages/eas-cli/README.md b/packages/eas-cli/README.md index 360dea79ea..2cfcbc4ad0 100644 --- a/packages/eas-cli/README.md +++ b/packages/eas-cli/README.md @@ -970,7 +970,10 @@ log in with your Expo account ``` USAGE - $ eas login + $ eas login [--sso] + +FLAGS + -s, --sso Log in with SSO DESCRIPTION log in with your Expo account diff --git a/packages/eas-cli/src/commands/account/login.ts b/packages/eas-cli/src/commands/account/login.ts index 8aec635919..01525e6d0a 100644 --- a/packages/eas-cli/src/commands/account/login.ts +++ b/packages/eas-cli/src/commands/account/login.ts @@ -13,7 +13,6 @@ export default class AccountLogin extends EasCommand { description: 'Login with SSO', char: 's', default: false, - hidden: true, }), };