Skip to content

Commit

Permalink
fix: remove unused --verbose option from start command (react-native-…
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
liamjones authored Jul 6, 2021
1 parent 2e177dc commit 4463ac6
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
4 changes: 0 additions & 4 deletions docs/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -499,10 +499,6 @@ Removes cached files

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

#### `--verbose`

Enables logging

#### `--https`

Enables https connections to the server
Expand Down
1 change: 0 additions & 1 deletion packages/cli/src/commands/start/runServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ export type Args = {
resetCache?: boolean;
sourceExts?: string[];
transformer?: string;
verbose?: boolean;
watchFolders?: string[];
config?: string;
projectRoot?: string;
Expand Down
4 changes: 0 additions & 4 deletions packages/cli/src/commands/start/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,6 @@ export default {
description:
'Path to a JavaScript file that exports a log reporter as a replacement for TerminalReporter',
},
{
name: '--verbose',
description: 'Enables logging',
},
{
name: '--https',
description: 'Enables https connections to the server',
Expand Down

0 comments on commit 4463ac6

Please sign in to comment.