diff options
-rw-r--r-- | src/bundler.zig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bundler.zig b/src/bundler.zig index f052ce8a9..edcada55b 100644 --- a/src/bundler.zig +++ b/src/bundler.zig @@ -1207,6 +1207,7 @@ pub fn NewBundler(cache_files: bool) type { .to_module_ref = Ref.RuntimeRef, .externals = ast.externals, .runtime_imports = ast.runtime_imports, + .require_ref = ast.require_ref, }, Linker, &bundler.linker, @@ -1222,6 +1223,7 @@ pub fn NewBundler(cache_files: bool) type { .to_module_ref = Ref.RuntimeRef, .externals = ast.externals, .runtime_imports = ast.runtime_imports, + .require_ref = ast.require_ref, }, Linker, &bundler.linker, @@ -1237,6 +1239,7 @@ pub fn NewBundler(cache_files: bool) type { .to_module_ref = Ref.RuntimeRef, .externals = ast.externals, .runtime_imports = ast.runtime_imports, + .require_ref = ast.require_ref, }, Linker, &bundler.linker, |