We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It seems that memfs has implemented .rm and .rmSync:
.rm
.rmSync
memfs/src/volume.ts
Lines 2044 to 2053 in ce45b54
But memfs uses fs-monkey to bind methods:
memfs/src/index.ts
Lines 39 to 40 in ce45b54
.rm and .rmSync are not supported in the fs-monkey's latest version yet: streamich/fs-monkey#362
fs-monkey
Maybe updating this dependency will fix it.
The text was updated successfully, but these errors were encountered:
It looks like they just released [email protected] last week (https://github.com/streamich/fs-monkey/releases/tag/v1.0.4), which is supported in the memfs dependency definition:
memfs
memfs/package.json
Lines 78 to 80 in 09eab27
I updated my transitive dependencies to grab the newer fs-monkey version and rmSync works now.
rmSync
I also proposed #909 to specify 1.0.4 as the minimum.
1.0.4
Sorry, something went wrong.
🎉 This issue has been resolved in version 3.5.3 🎉
The release is available on:
Your semantic-release bot 📦🚀
Successfully merging a pull request may close this issue.
It seems that memfs has implemented
.rm
and.rmSync
:memfs/src/volume.ts
Lines 2044 to 2053 in ce45b54
But memfs uses fs-monkey to bind methods:
memfs/src/index.ts
Lines 39 to 40 in ce45b54
.rm
and.rmSync
are not supported in thefs-monkey
's latest version yet: streamich/fs-monkey#362Maybe updating this dependency will fix it.
The text was updated successfully, but these errors were encountered: