Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-07-25 | refactor: decouple node resolution from deno_core (#24724) | David Sherret | |
2023-05-08 | refactor(ext/fs): `deno_fs::FileSystem` - conditional `Send + Sync` (#18993) | David Sherret | |
This allows for having a conditional `Send + Sync` on the file system trait for Deploy. | |||
2023-04-12 | refactor(ext/fs): abstract FS via FileSystem trait (#18599) | Luca Casonato | |
This commit abstracts out the specifics of the underlying system calls FS operations behind a new `FileSystem` and `File` trait in the `ext/fs` extension. This allows other embedders to re-use ext/fs, but substituting in a different FS backend. This is likely not the final form of these traits. Eventually they will be entirely `deno_core::Resource` agnostic, and will live in a seperate crate. --------- Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com> |