Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add delete tracking and symlink/unlink to OverlayFS #8857

Merged
merged 13 commits into from
Oct 5, 2023
1 change: 1 addition & 0 deletions packages/core/fs/src/NodeFS.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export class NodeFS implements FileSystem {
copyFile: any = promisify(fs.copyFile);
stat: any = promisify(fs.stat);
readdir: any = promisify(fs.readdir);
symlink: any = promisify(fs.symlink);
unlink: any = promisify(fs.unlink);
utimes: any = promisify(fs.utimes);
ncp: any = promisify(ncp);
Expand Down
Loading