Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-05-10 | feat(compile): unstable npm and node specifier support (#19005) | David Sherret | |
This is the initial support for npm and node specifiers in `deno compile`. The npm packages are included in the binary and read from it via a virtual file system. This also supports the `--node-modules-dir` flag, dependencies specified in a package.json, and npm binary commands (ex. `deno compile --unstable npm:cowsay`) Closes #16632 | |||
2023-05-05 | refactor(ext/node): combine `deno_node::Fs` with `deno_fs::FileSystem` (#18991) | David Sherret | |
2023-05-04 | refactor(ext/fs): boxed deno_fs::FileSystem (#18945) | David Sherret | |
1. Boxed `File` and `FileSystem` to allow more easily passing this through the CLI code (as shown within this pr). 2. `StdFileResource` is now `FileResource`. `FileResource` now contains an `Rc<dyn File>`. |