From acd62786c24c38d8986475f0660d5205b55a9ad3 Mon Sep 17 00:00:00 2001 From: Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com> Date: Tue, 10 Sep 2024 17:00:08 -0700 Subject: fix(ext/node): Add missing `node:path` exports (#25567) Apparently `path/posix` and `path/win32` have circular exports. I do not know why. Additionally there's a deprecated function `_makeLong` which is just `toNamespacedPath` --- ext/node/polyfills/path/mod.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'ext/node/polyfills/path/mod.ts') diff --git a/ext/node/polyfills/path/mod.ts b/ext/node/polyfills/path/mod.ts index 56d21d2e0..e74c1da4d 100644 --- a/ext/node/polyfills/path/mod.ts +++ b/ext/node/polyfills/path/mod.ts @@ -36,6 +36,7 @@ export const { resolve, sep, toNamespacedPath, + _makeLong, } = path; export default path; export * from "ext:deno_node/path/common.ts"; -- cgit v1.2.3