diff options
-rw-r--r-- | src/bun.js/module_loader.zig | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/bun.js/module_loader.zig b/src/bun.js/module_loader.zig index fa938f1ab..3975427ac 100644 --- a/src/bun.js/module_loader.zig +++ b/src/bun.js/module_loader.zig @@ -2016,11 +2016,11 @@ pub const HardcodedModule = enum { .{ .{ "assert", "node:assert" }, .{ "buffer", "node:buffer" }, - .{ "bun", "bun" }, .{ "bun:ffi", "bun:ffi" }, .{ "bun:jsc", "bun:jsc" }, .{ "bun:sqlite", "bun:sqlite" }, .{ "bun:wrap", "bun:wrap" }, + .{ "bun", "bun" }, .{ "child_process", "node:child_process" }, .{ "depd", "depd" }, .{ "detect-libc", "detect-libc" }, @@ -2063,6 +2063,9 @@ pub const HardcodedModule = enum { .{ "path/win32", "node:path/win32" }, .{ "perf_hooks", "node:perf_hooks" }, .{ "process", "node:process" }, + .{ "readable-stream", "node:stream" }, + .{ "readable-stream/consumer", "node:stream/consumer" }, + .{ "readable-stream/web", "node:stream/web" }, .{ "stream", "node:stream" }, .{ "stream/consumer", "node:stream/consumer" }, .{ "stream/web", "node:stream/web" }, |