diff options
author | 2023-01-13 11:38:16 -0800 | |
---|---|---|
committer | 2023-01-13 11:38:16 -0800 | |
commit | 168bb1427f2dce8ce871da30fbc22e3a0c83f9a2 (patch) | |
tree | be48052eca10da6c2cfcd49fbb66055c65bf6619 /src/bun.zig | |
parent | 996ef44c021a692403082c70e0eedc2ce1696eff (diff) | |
download | bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.tar.gz bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.tar.zst bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.zip |
move more things
Diffstat (limited to 'src/bun.zig')
-rw-r--r-- | src/bun.zig | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/bun.zig b/src/bun.zig index b8ffba410..0f68e8bc8 100644 --- a/src/bun.zig +++ b/src/bun.zig @@ -732,8 +732,10 @@ pub const fs = @import("./fs.zig"); pub const Bundler = bundler.Bundler; pub const bundler = @import("./bundler.zig"); pub const which = @import("./which.zig").which; - -pub const json = @import("./json_parser.zig"); +pub const js_parser = @import("./js_parser.zig"); +pub const js_printer = @import("./js_printer.zig"); +pub const js_lexer = @import("./js_lexer.zig"); +pub const JSON = @import("./json_parser.zig"); pub const JSAst = @import("./js_ast.zig"); pub const bit_set = @import("./install/bit_set.zig"); |