Skip to content

Commit

Permalink
fix(node): add dns/promises and stream/consumers (#16169)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret authored Oct 5, 2022
1 parent b487027 commit 9102ba9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions cli/node/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 9102ba9

Please sign in to comment.