Skip to content

Commit

Permalink
fix: add "junction" symlink type
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed May 18, 2024
1 parent 0c1cc7b commit 5814696
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/path.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1177,7 +1177,7 @@ interface CreateSymlinkOpts {
fromPath: Path;
targetPath: Path;
text: string;
type: "file" | "dir" | undefined;
type: "file" | "dir" | "junction" | undefined;
}

function createSymlinkSync(opts: CreateSymlinkOpts) {
Expand Down

0 comments on commit 5814696

Please sign in to comment.