diff options
author | 2023-01-13 11:38:16 -0800 | |
---|---|---|
committer | 2023-01-13 11:38:16 -0800 | |
commit | 168bb1427f2dce8ce871da30fbc22e3a0c83f9a2 (patch) | |
tree | be48052eca10da6c2cfcd49fbb66055c65bf6619 /src/cli/create_command.zig | |
parent | 996ef44c021a692403082c70e0eedc2ce1696eff (diff) | |
download | bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.tar.gz bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.tar.zst bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.zip |
move more things
Diffstat (limited to 'src/cli/create_command.zig')
-rw-r--r-- | src/cli/create_command.zig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cli/create_command.zig b/src/cli/create_command.zig index 364acb426..ba56b887c 100644 --- a/src/cli/create_command.zig +++ b/src/cli/create_command.zig @@ -11,12 +11,12 @@ const default_allocator = bun.default_allocator; const C = bun.C; const std = @import("std"); -const lex = @import("../js_lexer.zig"); +const lex = bun.js_lexer; const logger = @import("bun").logger; const options = @import("../options.zig"); -const js_parser = @import("../js_parser.zig"); -const js_ast = @import("../js_ast.zig"); +const js_parser = bun.js_parser; +const js_ast = bun.JSAst; const linker = @import("../linker.zig"); const allocators = @import("../allocators.zig"); @@ -34,7 +34,7 @@ const NetworkThread = HTTP.NetworkThread; const ParseJSON = @import("../json_parser.zig").ParseJSONUTF8; const Archive = @import("../libarchive/libarchive.zig").Archive; const Zlib = @import("../zlib.zig"); -const JSPrinter = @import("../js_printer.zig"); +const JSPrinter = bun.js_printer; const DotEnv = @import("../env_loader.zig"); const NPMClient = @import("../which_npm_client.zig").NPMClient; const which = @import("../which.zig").which; |