fix(ext/node): support junction symlinks on Windows (#22762)

Fixes https://github.com/denoland/deno/issues/20609

Vitepress support! `vitepress dev` and `vitepress build` via BYONM
This commit is contained in:
Divy Srivastava 2024-03-09 09:07:29 +05:30 committed by GitHub
parent 26cee4eb0d
commit 0bed4d3e51
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 27 additions and 2 deletions

View file

@ -64,6 +64,8 @@ pub enum FsFileType {
File,
#[serde(rename = "dir")]
Directory,
#[serde(rename = "junction")]
Junction,
}
#[derive(Serialize)]