mirror of
https://github.com/denoland/deno.git
synced 2024-12-21 23:04:45 -05:00
fix(node): add dns/promises and stream/consumers (#16169)
This commit is contained in:
parent
b487027b45
commit
9102ba9b0f
1 changed files with 8 additions and 0 deletions
|
@ -113,6 +113,10 @@ static SUPPORTED_MODULES: &[NodeModulePolyfill] = &[
|
|||
name: "dns",
|
||||
specifier: "node/dns.ts",
|
||||
},
|
||||
NodeModulePolyfill {
|
||||
name: "dns/promises",
|
||||
specifier: "node/dns/promises.ts",
|
||||
},
|
||||
NodeModulePolyfill {
|
||||
name: "domain",
|
||||
specifier: "node/domain.ts",
|
||||
|
@ -184,6 +188,10 @@ static SUPPORTED_MODULES: &[NodeModulePolyfill] = &[
|
|||
name: "stream",
|
||||
specifier: "node/stream.ts",
|
||||
},
|
||||
NodeModulePolyfill {
|
||||
name: "stream/consumers",
|
||||
specifier: "node/stream/consumers.mjs",
|
||||
},
|
||||
NodeModulePolyfill {
|
||||
name: "stream/promises",
|
||||
specifier: "node/stream/promises.mjs",
|
||||
|
|
Loading…
Reference in a new issue