diff options
| author | Divy Srivastava <dj.srivastava23@gmail.com> | 2024-08-21 20:33:52 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-22 09:03:52 +0530 |
| commit | 2531204a3476b0f49bd4ecec68a94efb2908412a (patch) | |
| tree | 1ecb439efe18fbb1c82c912b788264ce8e9a72fa /ext/node/lib.rs | |
| parent | 3314a0ceb8f874986d5da9f36f683740bd813750 (diff) | |
fix(ext/node): register `node:wasi` built-in (#25134)
Fixes https://github.com/denoland/deno/issues/23531
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 a820c4476..56eb292ae 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -594,7 +594,6 @@ deno_core::extension!(deno_node, "path/mod.ts", "path/separator.ts", "readline/promises.ts", - "wasi.ts", "node:assert" = "assert.ts", "node:assert/strict" = "assert/strict.ts", "node:async_hooks" = "async_hooks.ts", @@ -645,6 +644,7 @@ deno_core::extension!(deno_node, "node:util/types" = "util/types.ts", "node:v8" = "v8.ts", "node:vm" = "vm.js", + "node:wasi" = "wasi.ts", "node:worker_threads" = "worker_threads.ts", "node:zlib" = "zlib.ts", ], |
