diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-08-04 14:30:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-04 14:30:48 +0200 |
commit | 8d8a89ceea9edd5c1f3519769d4c1861e232719d (patch) | |
tree | 64ec35958eef6ad83df279e075bdb490a16743cf /ext/node/lib.rs | |
parent | 5311f69bbbd169726330ddae20ce119624b8e8ca (diff) |
fix(node): repl._builtinLibs (#20046)
Ref https://github.com/denoland/deno/issues/19733
Diffstat (limited to 'ext/node/lib.rs')
-rw-r--r-- | ext/node/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/node/lib.rs b/ext/node/lib.rs index ca79c3dce..40330dc5b 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -452,7 +452,6 @@ deno_core::extension!(deno_node, "path/mod.ts", "path/separator.ts", "readline/promises.ts", - "repl.ts", "wasi.ts", "assert.ts" with_specifier "node:assert", "assert/strict.ts" with_specifier "node:assert/strict", @@ -485,6 +484,7 @@ deno_core::extension!(deno_node, "punycode.ts" with_specifier "node:punycode", "querystring.ts" with_specifier "node:querystring", "readline.ts" with_specifier "node:readline", + "repl.ts" with_specifier "node:repl", "stream.ts" with_specifier "node:stream", "stream/consumers.mjs" with_specifier "node:stream/consumers", "stream/promises.mjs" with_specifier "node:stream/promises", |