From b0b0594767cf52c8d557f57d2c7632b446262f54 Mon Sep 17 00:00:00 2001 From: Ryan Clements Date: Tue, 18 Apr 2023 04:44:25 -0400 Subject: fix(path): Remove non node symbols (#18630) - preserve referential invariants (e.g. path.posix === posix) - remove glob and separator exports - save removal of fromFileUrl and toFileUrl for a different PR as that refactor is more involved - addresses #18177 --- ext/node/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ext/node/lib.rs') diff --git a/ext/node/lib.rs b/ext/node/lib.rs index b73c3366f..f4b4d0a39 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -439,8 +439,9 @@ deno_core::extension!(deno_node, "path/_constants.ts", "path/_interface.ts", "path/_util.ts", + "path/_posix.ts", + "path/_win32.ts", "path/common.ts", - "path/glob.ts", "path/mod.ts", "path/posix.ts", "path/separator.ts", -- cgit v1.2.3