diff --git a/packages/cli-platform-android/README.md b/packages/cli-platform-android/README.md index 1a0c168c2..b8adb8e68 100644 --- a/packages/cli-platform-android/README.md +++ b/packages/cli-platform-android/README.md @@ -79,7 +79,7 @@ Build native libraries only for the current device architecture for debug builds List all available Android devices and simulators and let you choose one to run the app. -#### `--interactive` +#### `--interactive`, `-i` Manually select a task and device/simulator you want to run your app on. diff --git a/packages/cli-platform-android/src/commands/buildAndroid/index.ts b/packages/cli-platform-android/src/commands/buildAndroid/index.ts index 2732b84d3..3ce39b49a 100644 --- a/packages/cli-platform-android/src/commands/buildAndroid/index.ts +++ b/packages/cli-platform-android/src/commands/buildAndroid/index.ts @@ -118,7 +118,7 @@ export const options = [ parse: (val: string) => val.split(' '), }, { - name: '--interactive', + name: '-i --interactive', description: 'Explicitly select build type and flavour to use before running a build', }, diff --git a/packages/cli-platform-apple/src/commands/buildCommand/buildOptions.ts b/packages/cli-platform-apple/src/commands/buildCommand/buildOptions.ts index 8c53fbd52..778acae53 100644 --- a/packages/cli-platform-apple/src/commands/buildCommand/buildOptions.ts +++ b/packages/cli-platform-apple/src/commands/buildCommand/buildOptions.ts @@ -52,7 +52,7 @@ export const getBuildOptions = ({platformName}: BuilderCommand) => { description: 'Explicitly set Xcode target to use.', }, { - name: '--interactive', + name: '-i --interactive', description: 'Explicitly select which scheme and configuration to use before running a build', }, diff --git a/packages/cli-platform-apple/src/commands/logCommand/logOptions.ts b/packages/cli-platform-apple/src/commands/logCommand/logOptions.ts index f4190bf2a..6fc708091 100644 --- a/packages/cli-platform-apple/src/commands/logCommand/logOptions.ts +++ b/packages/cli-platform-apple/src/commands/logCommand/logOptions.ts @@ -2,7 +2,7 @@ import {BuilderCommand} from '../../types'; export const getLogOptions = ({}: BuilderCommand) => [ { - name: '--interactive', + name: '-i --interactive', description: 'Explicitly select simulator to tail logs from. By default it will tail logs from the first booted and available simulator.', }, diff --git a/packages/cli-platform-ios/README.md b/packages/cli-platform-ios/README.md index 6d8dae878..b3fa81c19 100644 --- a/packages/cli-platform-ios/README.md +++ b/packages/cli-platform-ios/README.md @@ -185,6 +185,6 @@ Starts iOS device syslog tail. #### Options -#### `--interactive` +#### `--interactive`, `-i` Explicitly select simulator to tail logs from. By default it will tail logs from the first booted and available simulator.