diff options
Diffstat (limited to 'ext/node')
-rw-r--r-- | ext/node/lib.rs | 100 |
1 files changed, 50 insertions, 50 deletions
diff --git a/ext/node/lib.rs b/ext/node/lib.rs index 9d92f7663..98b927ba8 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -509,56 +509,56 @@ deno_core::extension!(deno_node, "path/separator.ts", "readline/promises.ts", "wasi.ts", - "assert.ts" with_specifier "node:assert", - "assert/strict.ts" with_specifier "node:assert/strict", - "async_hooks.ts" with_specifier "node:async_hooks", - "buffer.ts" with_specifier "node:buffer", - "child_process.ts" with_specifier "node:child_process", - "cluster.ts" with_specifier "node:cluster", - "console.ts" with_specifier "node:console", - "constants.ts" with_specifier "node:constants", - "crypto.ts" with_specifier "node:crypto", - "dgram.ts" with_specifier "node:dgram", - "diagnostics_channel.ts" with_specifier "node:diagnostics_channel", - "dns.ts" with_specifier "node:dns", - "dns/promises.ts" with_specifier "node:dns/promises", - "domain.ts" with_specifier "node:domain", - "events.ts" with_specifier "node:events", - "fs.ts" with_specifier "node:fs", - "fs/promises.ts" with_specifier "node:fs/promises", - "http.ts" with_specifier "node:http", - "http2.ts" with_specifier "node:http2", - "https.ts" with_specifier "node:https", - "01_require.js" with_specifier "node:module", - "net.ts" with_specifier "node:net", - "os.ts" with_specifier "node:os", - "path.ts" with_specifier "node:path", - "path/posix.ts" with_specifier "node:path/posix", - "path/win32.ts" with_specifier "node:path/win32", - "perf_hooks.ts" with_specifier "node:perf_hooks", - "process.ts" with_specifier "node:process", - "punycode.ts" with_specifier "node:punycode", - "querystring.js" 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", - "stream/web.ts" with_specifier "node:stream/web", - "string_decoder.ts" with_specifier "node:string_decoder", - "sys.ts" with_specifier "node:sys", - "testing.ts" with_specifier "node:test", - "timers.ts" with_specifier "node:timers", - "timers/promises.ts" with_specifier "node:timers/promises", - "tls.ts" with_specifier "node:tls", - "tty.js" with_specifier "node:tty", - "url.ts" with_specifier "node:url", - "util.ts" with_specifier "node:util", - "util/types.ts" with_specifier "node:util/types", - "v8.ts" with_specifier "node:v8", - "vm.ts" with_specifier "node:vm", - "worker_threads.ts" with_specifier "node:worker_threads", - "zlib.ts" with_specifier "node:zlib", + "node:assert" = "assert.ts", + "node:assert/strict" = "assert/strict.ts", + "node:async_hooks" = "async_hooks.ts", + "node:buffer" = "buffer.ts", + "node:child_process" = "child_process.ts", + "node:cluster" = "cluster.ts", + "node:console" = "console.ts", + "node:constants" = "constants.ts", + "node:crypto" = "crypto.ts", + "node:dgram" = "dgram.ts", + "node:diagnostics_channel" = "diagnostics_channel.ts", + "node:dns" = "dns.ts", + "node:dns/promises" = "dns/promises.ts", + "node:domain" = "domain.ts", + "node:events" = "events.ts", + "node:fs" = "fs.ts", + "node:fs/promises" = "fs/promises.ts", + "node:http" = "http.ts", + "node:http2" = "http2.ts", + "node:https" = "https.ts", + "node:module" = "01_require.js", + "node:net" = "net.ts", + "node:os" = "os.ts", + "node:path" = "path.ts", + "node:path/posix" = "path/posix.ts", + "node:path/win32" = "path/win32.ts", + "node:perf_hooks" = "perf_hooks.ts", + "node:process" = "process.ts", + "node:punycode" = "punycode.ts", + "node:querystring" = "querystring.js", + "node:readline" = "readline.ts", + "node:repl" = "repl.ts", + "node:stream" = "stream.ts", + "node:stream/consumers" = "stream/consumers.mjs", + "node:stream/promises" = "stream/promises.mjs", + "node:stream/web" = "stream/web.ts", + "node:string_decoder" = "string_decoder.ts", + "node:sys" = "sys.ts", + "node:test" = "testing.ts", + "node:timers" = "timers.ts", + "node:timers/promises" = "timers/promises.ts", + "node:tls" = "tls.ts", + "node:tty" = "tty.js", + "node:url" = "url.ts", + "node:util" = "util.ts", + "node:util/types" = "util/types.ts", + "node:v8" = "v8.ts", + "node:vm" = "vm.ts", + "node:worker_threads" = "worker_threads.ts", + "node:zlib" = "zlib.ts", ], options = { maybe_npm_resolver: Option<NpmResolverRc>, |