diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-06-26 00:15:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-25 19:15:54 -0400 |
commit | 09cc473f3b3807d79a75eda3a744e4d9d7e34f3f (patch) | |
tree | 721a19efebedbf91da334660db41a1284cf650f4 | |
parent | 700cd200c18d4a54f98c3633b898236038e8e550 (diff) |
fix(node): add missing readline/promises module (#24336)
Fixes https://github.com/jsr-io/jsr-npm/issues/91
-rw-r--r-- | ext/node/polyfill.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/node/polyfill.rs b/ext/node/polyfill.rs index eecb8995e..5847acc42 100644 --- a/ext/node/polyfill.rs +++ b/ext/node/polyfill.rs @@ -71,6 +71,7 @@ generate_builtin_node_module_lists! { "querystring", "repl", "readline", + "readline/promises", "stream", "stream/consumers", "stream/promises", |