diff options
author | 2022-06-22 23:21:48 -0700 | |
---|---|---|
committer | 2022-06-22 23:21:48 -0700 | |
commit | 729d445b6885f69dd2c6355f38707bd42851c791 (patch) | |
tree | f87a7c408929ea3f57bbb7ace380cf869da83c0e /src/bun_js.zig | |
parent | 25f820c6bf1d8ec6d444ef579cc036b8c0607b75 (diff) | |
download | bun-jarred/rename.tar.gz bun-jarred/rename.tar.zst bun-jarred/rename.zip |
change the directory structurejarred/rename
Diffstat (limited to 'src/bun_js.zig')
-rw-r--r-- | src/bun_js.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bun_js.zig b/src/bun_js.zig index 7ccdc8747..2ccc3f47f 100644 --- a/src/bun_js.zig +++ b/src/bun_js.zig @@ -22,7 +22,7 @@ const panicky = @import("panic_handler.zig"); const sync = @import("./sync.zig"); const Api = @import("api/schema.zig").Api; const resolve_path = @import("./resolver/resolve_path.zig"); -const configureTransformOptionsForBun = @import("./javascript/jsc/config.zig").configureTransformOptionsForBun; +const configureTransformOptionsForBun = @import("./bun.js/config.zig").configureTransformOptionsForBun; const Command = @import("cli.zig").Command; const bundler = @import("bundler.zig"); const NodeModuleBundle = @import("node_module_bundle.zig").NodeModuleBundle; @@ -42,7 +42,7 @@ pub const Run = struct { pub fn boot(ctx: Command.Context, file: std.fs.File, entry_path: string) !void { if (comptime JSC.is_bindgen) unreachable; - @import("javascript/jsc/javascript_core_c_api.zig").JSCInitialize(); + @import("bun.js/javascript_core_c_api.zig").JSCInitialize(); js_ast.Expr.Data.Store.create(default_allocator); js_ast.Stmt.Data.Store.create(default_allocator); |