From c21270e062013fd4a4fe77d15a116a938502d40b Mon Sep 17 00:00:00 2001 From: Szymon Dziedzic Date: Thu, 23 May 2024 19:11:41 +0200 Subject: [PATCH] [eas-cli] make `init:onboarding` command public (#2399) * [eas-cli] make `init:onboarding` command public * update CHANGELOG.md --- CHANGELOG.md | 2 ++ packages/eas-cli/src/commands/project/onboarding.ts | 5 ++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 814d06cbd2..b4a6f2a2fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ This is the log of notable changes to EAS CLI and related packages. ### ๐ŸŽ‰ New features +- Make `eas init:onboarding` command public. ([#2399](https://github.com/expo/eas-cli/pull/2399) by [@szdziedzic](https://github.com/szdziedzic)) + ### ๐Ÿ› Bug fixes ### ๐Ÿงน Chores diff --git a/packages/eas-cli/src/commands/project/onboarding.ts b/packages/eas-cli/src/commands/project/onboarding.ts index 84246ef076..d6780ebc80 100644 --- a/packages/eas-cli/src/commands/project/onboarding.ts +++ b/packages/eas-cli/src/commands/project/onboarding.ts @@ -38,11 +38,10 @@ import { easCliVersion } from '../../utils/easCli'; import GitClient from '../../vcs/clients/git'; export default class Onboarding extends EasCommand { - static override hidden = true; - static override aliases = ['init:onboarding', 'onboarding']; - static override description = 'continue onboarding process started on the expo.dev website'; + static override description = + 'continue onboarding process started on the https://expo.new website.'; static override flags = {};