fix(bun): disable large transpiling cache

This commit is contained in:
Ruben Fiszel
2024-08-20 08:49:51 +02:00
parent f3bcadbfb1
commit 1a0e32b40b
@@ -571,6 +571,7 @@ pub fn copy_recursively(
}
}
}
let original = entry.path();
if filetype.is_dir() {
@@ -1290,6 +1291,10 @@ pub async fn get_common_bun_proc_envs(base_internal_url: &str) -> HashMap<String
String::from("BUN_INSTALL_CACHE_DIR"),
BUN_CACHE_DIR.to_string(),
),
(
String::from("BUN_RUNTIME_TRANSPILER_CACHE_PATH"),
"0".to_string(),
),
]);
if let Some(ref node_path) = NODE_PATH.as_ref() {