Skip to content
Closed
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: 3 additions & 3 deletions cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,9 @@ export function runProgram(config: Config): void {
.option('--target <id>', 'use a specific target')
.option('--no-sync', `do not run ${c.input('sync')}`)
.option('--forwardPorts <port:port>', 'Automatically run "adb reverse" for better live-reloading support')
.option('-l, --live-reload', 'Enable Live Reload')
.option('--host <host>', 'Host used for live reload')
.option('--port <port>', 'Port used for live reload')
.option('-l, --live-reload', 'Set live-reload URL via CLI (uses defaults, overrides server.url config)')
.option('--host <host>', 'Configure host for live-reload URL (used with --live-reload)')
.option('--port <port>', 'Configure port for live-reload URL (used with --live-reload)')
.option('--configuration <name>', 'Configuration name of the iOS Scheme')
.action(
wrapAction(
Expand Down
Loading