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: --open and --filter arguments #1259

Merged
merged 3 commits into from
Jan 1, 2021
Merged
Changes from 2 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
4 changes: 2 additions & 2 deletions packages/vite/src/node/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ cli
.option('-r, --root <path>', `[string] use specified config file`)
.option('-l, --logLevel <level>', `[string] silent | error | warn | all`)
.option('-d, --debug [feat]', `[string | boolean] show debug logs`)
.option('-f, --filter [filter]', `[string] filter debug logs`)
.option('-f, --filter <filter>', `[string] filter debug logs`)

// dev
cli
Expand All @@ -58,7 +58,7 @@ cli
.option('--host <host>', `[string] specify hostname`)
.option('--port <port>', `[number] specify port`)
.option('--https', `[boolean] use TLS + HTTP/2`)
.option('--open', `[boolean | string] open browser on startup`)
.option('--open [browser]', `[boolean | string] open browser on startup`)
.option('--cors', `[boolean] enable CORS`)
.option('-m, --mode <mode>', `[string] set env mode`, {
default: 'development'
Expand Down