diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-10-05 19:33:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-05 19:33:52 -0400 |
commit | 9102ba9b0f50ba1fe4f13111ec66ac4e09ba2db4 (patch) | |
tree | 382919a0d422130312588c29ba4560c5cb13f184 | |
parent | b487027b4576332a0f0f818e7e8feda5dcc04d15 (diff) |
fix(node): add dns/promises and stream/consumers (#16169)
-rw-r--r-- | cli/node/mod.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cli/node/mod.rs b/cli/node/mod.rs index 06d62269e..97240cfe7 100644 --- a/cli/node/mod.rs +++ b/cli/node/mod.rs @@ -114,6 +114,10 @@ static SUPPORTED_MODULES: &[NodeModulePolyfill] = &[ specifier: "node/dns.ts", }, NodeModulePolyfill { + name: "dns/promises", + specifier: "node/dns/promises.ts", + }, + NodeModulePolyfill { name: "domain", specifier: "node/domain.ts", }, @@ -185,6 +189,10 @@ static SUPPORTED_MODULES: &[NodeModulePolyfill] = &[ specifier: "node/stream.ts", }, NodeModulePolyfill { + name: "stream/consumers", + specifier: "node/stream/consumers.mjs", + }, + NodeModulePolyfill { name: "stream/promises", specifier: "node/stream/promises.mjs", }, |