diff options
author | 2021-06-28 23:14:46 -0700 | |
---|---|---|
committer | 2021-06-28 23:14:46 -0700 | |
commit | 70126c074f8d29a5c1767e0830907e736a30febe (patch) | |
tree | 9bb925a4a757172e5b4dda9abe1a059e5e035f25 | |
parent | adbeb2497929d73885f9bd9911beb76bcecc2223 (diff) | |
download | bun-70126c074f8d29a5c1767e0830907e736a30febe.tar.gz bun-70126c074f8d29a5c1767e0830907e736a30febe.tar.zst bun-70126c074f8d29a5c1767e0830907e736a30febe.zip |
require_ref
Former-commit-id: 23e64279d8bbaed26c28ac19db66c064dc3929ba
-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, |