You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After the filesystem is initalized by fs.init, the node_modules folder is arranged similar to pnpm with symbolic links. However, there is no actual way to find these symbolic links.
Currently fs.stat will follow the symbolic links (which matches the stat behaviour). Ideally, there would be an lstat API along with readlink, so you could determine which files are symbolic links, and also find determine their target.
The text was updated successfully, but these errors were encountered:
After the filesystem is initalized by
fs.init
, the node_modules folder is arranged similar to pnpm with symbolic links. However, there is no actual way to find these symbolic links.Currently
fs.stat
will follow the symbolic links (which matches thestat
behaviour). Ideally, there would be anlstat
API along withreadlink
, so you could determine which files are symbolic links, and also find determine their target.The text was updated successfully, but these errors were encountered: