Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-05-02 | fix(npm): canonicalize filename before returning (#18948) | Bartek Iwańczuk | |
This commit changes how paths for npm packages are handled, by canonicalizing them when resolving. This is done so that instead of returning "node_modules/<package_name>@<version>/node_modules/<dep>/index.js" (which is a symlink) we "node_modules/<dep>@<dep_version>/index.js. Fixes https://github.com/denoland/deno/issues/18924 Fixes https://github.com/bluwy/create-vite-extra/issues/31 --------- Co-authored-by: David Sherret <dsherret@gmail.com> | |||
2023-04-12 | chore: fix windows clippy errors (#18670) | David Sherret | |
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> |