Skip to content

Commit

Permalink
stamp: add missing lines while rebasing
Browse files Browse the repository at this point in the history
  • Loading branch information
nyannyacha committed May 16, 2024
1 parent 15fcec8 commit b71c34a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions crates/base/tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ async fn test_not_trigger_pku_sigsegv_due_to_jit_compilation_non_cli() {
vec![],
None,
None,
None,
)
.await
.unwrap();
Expand Down Expand Up @@ -349,6 +350,7 @@ async fn test_main_worker_boot_error() {
vec![],
None,
None,
None,
)
.await
.unwrap();
Expand Down
5 changes: 5 additions & 0 deletions crates/cli/src/flags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,11 @@ fn get_start_command() -> Command {
.action(ArgAction::SetTrue),
)
.arg(arg!(--"static" <Path>).help("Glob pattern for static files to be included"))
.arg(arg!(--"jsx-specifier" <Path> "A valid JSX specifier"))
.arg(
arg!(--"jsx-module" <Path> "A valid JSX module")
.value_parser(["jsx-runtime", "jsx-dev-runtime", "precompile", "react"]),
)
.arg(
arg!(--"tcp-nodelay" [BOOL])
.help("Disables Nagle's algorithm")
Expand Down

0 comments on commit b71c34a

Please sign in to comment.