diff --git a/CHANGELOG.md b/CHANGELOG.md index ccab1e71f6..b223baede5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,8 @@ This is the log of notable changes to EAS CLI and related packages. ### ๐Ÿงน Chores +- Suggest using `eas build:dev` for matching configurations. ([#2929](https://github.com/expo/eas-cli/pull/2929) by [@szdziedzic](https://github.com/szdziedzic)) + ## [15.0.13](https://github.com/expo/eas-cli/releases/tag/v15.0.13) - 2025-03-04 ### ๐Ÿ› Bug fixes diff --git a/packages/eas-cli/src/commands/build/index.ts b/packages/eas-cli/src/commands/build/index.ts index ae3dbd9fcf..dd32bcf69f 100644 --- a/packages/eas-cli/src/commands/build/index.ts +++ b/packages/eas-cli/src/commands/build/index.ts @@ -311,9 +311,9 @@ export default class Build extends EasCommand { return true; }) ) { - Log.addNewLineIfNone(); + Log.newLine(); Log.log( - `๐Ÿ”Ž You are using a build configuration that could benefit from using ${chalk.bold( + `๐Ÿ”Ž TIP: You are using a build configuration that could benefit from using ${chalk.bold( 'eas build:dev' )} command. Run it to install and run cached development build, or create a new one if a compatible build doesn't exist yet.` );