Skip to content

Commit 4463ac6

Browse files
authored
fix: remove unused --verbose option from start command (react-native-community#1394)
The start command had a `--verbose` option that didn't do anything. You _do_ get extra logging with `--verbose` but this comes from the parent react-native command, where it is already documented.
1 parent 2e177dc commit 4463ac6

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

docs/commands.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -499,10 +499,6 @@ Removes cached files
499499

500500
Path to a JavaScript file that exports a log reporter as a replacement for TerminalReporter
501501

502-
#### `--verbose`
503-
504-
Enables logging
505-
506502
#### `--https`
507503

508504
Enables https connections to the server

packages/cli/src/commands/start/runServer.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ export type Args = {
3333
resetCache?: boolean;
3434
sourceExts?: string[];
3535
transformer?: string;
36-
verbose?: boolean;
3736
watchFolders?: string[];
3837
config?: string;
3938
projectRoot?: string;

packages/cli/src/commands/start/start.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,6 @@ export default {
6767
description:
6868
'Path to a JavaScript file that exports a log reporter as a replacement for TerminalReporter',
6969
},
70-
{
71-
name: '--verbose',
72-
description: 'Enables logging',
73-
},
7470
{
7571
name: '--https',
7672
description: 'Enables https connections to the server',

0 commit comments

Comments
 (0)