diff options
author | 2023-08-11 22:13:46 -0700 | |
---|---|---|
committer | 2023-08-11 22:13:46 -0700 | |
commit | ca26780b276d32f761af37f113ca24aeeb41e92f (patch) | |
tree | c6127569c4ad0b74e6216f63f663ae44d058d9f3 /src/bun.js/api/ffi.zig | |
parent | 117cee5ca5c36f78ae75a0dee3178620bba73968 (diff) | |
download | bun-ca26780b276d32f761af37f113ca24aeeb41e92f.tar.gz bun-ca26780b276d32f761af37f113ca24aeeb41e92f.tar.zst bun-ca26780b276d32f761af37f113ca24aeeb41e92f.zip |
Deprecate loading `node_modules.bun` (#4131)
* Deprecate loading `node_modules.bun`
* realpath
* regenerate schema
* More
* more
* Update cli.zig
---------
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
Diffstat (limited to 'src/bun.js/api/ffi.zig')
-rw-r--r-- | src/bun.js/api/ffi.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bun.js/api/ffi.zig b/src/bun.js/api/ffi.zig index 1ca44619d..8d02f6672 100644 --- a/src/bun.js/api/ffi.zig +++ b/src/bun.js/api/ffi.zig @@ -15,7 +15,7 @@ const IdentityContext = @import("../../identity_context.zig").IdentityContext; const Fs = @import("../../fs.zig"); const Resolver = @import("../../resolver/resolver.zig"); const ast = @import("../../import_record.zig"); -const NodeModuleBundle = @import("../../node_module_bundle.zig").NodeModuleBundle; + const MacroEntryPoint = bun.bundler.MacroEntryPoint; const logger = @import("root").bun.logger; const Api = @import("../../api/schema.zig").Api; |