summaryrefslogtreecommitdiff
path: root/ext/node/lib.rs
diff options
context:
space:
mode:
authorRyan Clements <ryanclementshax@gmail.com>2023-04-18 04:44:25 -0400
committerGitHub <noreply@github.com>2023-04-18 10:44:25 +0200
commitb0b0594767cf52c8d557f57d2c7632b446262f54 (patch)
tree33f0a9b4ec9cb33471e52bf8e36d8a7314850458 /ext/node/lib.rs
parent54c31194a5bb3b0fc4d09d52b3587e76d4f1cd4a (diff)
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
Diffstat (limited to 'ext/node/lib.rs')
-rw-r--r--ext/node/lib.rs3
1 files changed, 2 insertions, 1 deletions
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",