Skip to content

Commit a58181c

Browse files
feat: add -i alias for --interactive option (#2420)
* feat: add alias for `--interactive` option * docs: mention alias
1 parent b1830b8 commit a58181c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

packages/cli-platform-android/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Build native libraries only for the current device architecture for debug builds
7979
8080
List all available Android devices and simulators and let you choose one to run the app.
8181

82-
#### `--interactive`
82+
#### `--interactive`, `-i`
8383

8484
Manually select a task and device/simulator you want to run your app on.
8585

packages/cli-platform-android/src/commands/buildAndroid/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export const options = [
118118
parse: (val: string) => val.split(' '),
119119
},
120120
{
121-
name: '--interactive',
121+
name: '-i --interactive',
122122
description:
123123
'Explicitly select build type and flavour to use before running a build',
124124
},

packages/cli-platform-apple/src/commands/buildCommand/buildOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const getBuildOptions = ({platformName}: BuilderCommand) => {
5252
description: 'Explicitly set Xcode target to use.',
5353
},
5454
{
55-
name: '--interactive',
55+
name: '-i --interactive',
5656
description:
5757
'Explicitly select which scheme and configuration to use before running a build',
5858
},

packages/cli-platform-apple/src/commands/logCommand/logOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {BuilderCommand} from '../../types';
22

33
export const getLogOptions = ({}: BuilderCommand) => [
44
{
5-
name: '--interactive',
5+
name: '-i --interactive',
66
description:
77
'Explicitly select simulator to tail logs from. By default it will tail logs from the first booted and available simulator.',
88
},

packages/cli-platform-ios/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,6 @@ Starts iOS device syslog tail.
185185

186186
#### Options
187187

188-
#### `--interactive`
188+
#### `--interactive`, `-i`
189189

190190
Explicitly select simulator to tail logs from. By default it will tail logs from the first booted and available simulator.

0 commit comments

Comments
 (0)