summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cli/tools/installer.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tools/installer.rs b/cli/tools/installer.rs
index 686e127df..a4340e98c 100644
--- a/cli/tools/installer.rs
+++ b/cli/tools/installer.rs
@@ -334,6 +334,10 @@ fn resolve_shim_data(
executable_args.push("--no-prompt".to_string());
}
+ if flags.compat {
+ executable_args.push("--compat".to_string());
+ }
+
if !flags.v8_flags.is_empty() {
executable_args.push(format!("--v8-flags={}", flags.v8_flags.join(",")));
}
@@ -588,6 +592,7 @@ mod tests {
allow_read: Some(vec![]),
typecheck_mode: TypecheckMode::None,
log_level: Some(Level::Error),
+ compat: true,
..Flags::default()
},
&InstallFlags {
@@ -609,6 +614,7 @@ mod tests {
"--allow-net",
"--quiet",
"--no-check",
+ "--compat",
"http://localhost:4545/echo_server.ts",
"--foobar",
]