From 5b30d87f55ed60705455afe191e4192a45bb2a85 Mon Sep 17 00:00:00 2001 From: Brent Vatne Date: Thu, 25 Jun 2026 10:59:00 -0700 Subject: [PATCH 1/2] [eas-cli] Add -p alias for --platform in simulator:start Co-Authored-By: Claude Opus 4.8 (1M context) --- CHANGELOG.md | 1 + packages/eas-cli/src/commands/simulator/start.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 51a836d7fa..f42442d3c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ This is the log of notable changes to EAS CLI and related packages. ### 🎉 New features - [eas-cli] New command `observe:session` for inspecting events by session ID. ([#3868](https://github.com/expo/eas-cli/pull/3868) by [@douglowder](https://github.com/douglowder)) +- [eas-cli] Add `-p` as an alias for `--platform` in `eas simulator:start`. ([#3892](https://github.com/expo/eas-cli/pull/3892) by [@brentvatne](https://github.com/brentvatne)) ### 🐛 Bug fixes diff --git a/packages/eas-cli/src/commands/simulator/start.ts b/packages/eas-cli/src/commands/simulator/start.ts index efeb608c1a..75925e762d 100644 --- a/packages/eas-cli/src/commands/simulator/start.ts +++ b/packages/eas-cli/src/commands/simulator/start.ts @@ -49,6 +49,7 @@ export default class SimulatorStart extends EasCommand { static override flags = { platform: Flags.option({ + char: 'p', description: 'Device platform', options: ['android', 'ios'] as const, required: true, From a24f16b74d170e7b5ead893404a7fcc17eefe434 Mon Sep 17 00:00:00 2001 From: Brent Vatne Date: Thu, 25 Jun 2026 10:59:46 -0700 Subject: [PATCH 2/2] [eas-cli] Use correct PR number in changelog Co-Authored-By: Claude Opus 4.8 (1M context) --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f42442d3c9..890b43df60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ This is the log of notable changes to EAS CLI and related packages. ### 🎉 New features - [eas-cli] New command `observe:session` for inspecting events by session ID. ([#3868](https://github.com/expo/eas-cli/pull/3868) by [@douglowder](https://github.com/douglowder)) -- [eas-cli] Add `-p` as an alias for `--platform` in `eas simulator:start`. ([#3892](https://github.com/expo/eas-cli/pull/3892) by [@brentvatne](https://github.com/brentvatne)) +- [eas-cli] Add `-p` as an alias for `--platform` in `eas simulator:start`. ([#3902](https://github.com/expo/eas-cli/pull/3902) by [@brentvatne](https://github.com/brentvatne)) ### 🐛 Bug fixes