diff options
author | 2022-11-29 02:42:56 -0800 | |
---|---|---|
committer | 2022-11-29 02:42:56 -0800 | |
commit | b631ea7d725a42954c577ea686ae711ef04f63e1 (patch) | |
tree | 37852a650a0ec02fd6042919dc476c7dab550529 /src/sourcemap/sourcemap.zig | |
parent | 7b59d9d97c4d4543d8fe2a2222781d7b89539fc2 (diff) | |
download | bun-b631ea7d725a42954c577ea686ae711ef04f63e1.tar.gz bun-b631ea7d725a42954c577ea686ae711ef04f63e1.tar.zst bun-b631ea7d725a42954c577ea686ae711ef04f63e1.zip |
import everything from "bun" where possible
Diffstat (limited to 'src/sourcemap/sourcemap.zig')
-rw-r--r-- | src/sourcemap/sourcemap.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sourcemap/sourcemap.zig b/src/sourcemap/sourcemap.zig index aa914332d..e2d95c1ac 100644 --- a/src/sourcemap/sourcemap.zig +++ b/src/sourcemap/sourcemap.zig @@ -6,7 +6,7 @@ pub const VLQ_CONTINUATION_MASK: u32 = 1 << VLQ_CONTINUATION_BIT; const std = @import("std"); const JSAst = @import("../js_ast.zig"); const BabyList = JSAst.BabyList; -const Logger = @import("../logger.zig"); +const Logger = @import("bun").logger; const strings = @import("../string_immutable.zig"); const MutableString = @import("../string_mutable.zig").MutableString; const Joiner = @import("../string_joiner.zig"); |