diff --git a/src/js_parser.zig b/src/js_parser.zig index 96e33cb273..448bc984e0 100644 --- a/src/js_parser.zig +++ b/src/js_parser.zig @@ -23,7 +23,6 @@ const Decl = G.Decl; const Property = G.Property; const Arg = G.Arg; const Allocator = std.mem.Allocator; -const glob = @import("./glob.zig"); pub const StmtNodeIndex = js_ast.StmtNodeIndex; pub const ExprNodeIndex = js_ast.ExprNodeIndex; pub const ExprNodeList = js_ast.ExprNodeList; @@ -25088,6 +25087,7 @@ const string = []const u8; const FeatureFlags = @import("./feature_flags.zig"); const _runtime = @import("./runtime.zig"); +const glob = @import("./glob.zig"); const ObjectPool = @import("./pool.zig").ObjectPool; const Define = @import("./defines.zig").Define; diff --git a/test/js/bun/glob/import-meta-glob.test.ts b/test/js/bun/glob/import-meta-glob.test.ts index bc97b3416d..e64d3e3af0 100644 --- a/test/js/bun/glob/import-meta-glob.test.ts +++ b/test/js/bun/glob/import-meta-glob.test.ts @@ -1,4 +1,4 @@ -import { test, expect, describe } from "bun:test"; +import { describe, expect, test } from "bun:test"; import { bunEnv, bunExe, tempDirWithFiles } from "harness"; describe("import.meta.glob", () => {