Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/eas-install-guidance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'create-expo-stack': patch
'rn-new': patch
---

Correct EAS completion output so install steps are shown only for no-install flows.
4 changes: 2 additions & 2 deletions cli/src/utilities/printOutput.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ export async function printOutput(
info(`To build for development:`);
info(``);
highlight(`${step}. cd ${projectDir}`);
if (!flags.noInstall) highlight(`${++step}. ${packageManager} install`);
if (flags.noInstall) highlight(`${++step}. ${packageManager} install`);
highlight(`${++step}. eas build --profile=development`);
highlight(`${++step}. ${runCommand} start`);

Expand All @@ -274,7 +274,7 @@ export async function printOutput(
info(`To create a build to share with others:`);
info(``);
highlight(`${step}. cd ${projectDir}`);
if (!flags.noInstall) highlight(`${++step}. ${packageManager} install`);
if (flags.noInstall) highlight(`${++step}. ${packageManager} install`);
highlight(`${++step}. eas build --profile=preview`);

info(``);
Expand Down
Loading