Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove unused --verbose option from start command #1394

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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