deno/cli
Divy Srivastava df062d2c78
fix(ext/node): add fs.cp, fs.cpSync, promises.cp (#21745)
Fixes https://github.com/denoland/deno/issues/20803
Fixes https://github.com/denoland/deno/issues/21723

Performance: copying a 48GiB rust `target` folder (recursive)
| Platform  | `deno` | `node v21.5` | Improvement |
| -------- | ------- | ------- | ------- |
| macOS (APFS) |   3.1secs  |  127.99 secs |  **42x** |
| Windows | 18.3secs | 67.2secs |  **3.8x** |

Copying files with varying sizes:


![image](https://github.com/denoland/deno/assets/34997667/58932652-6f7a-47f5-8504-896dc9ab4ddc)
2024-01-05 18:28:33 +05:30
..
args fix(cli): respect exclude option for deno check command (#21779) 2024-01-03 20:43:17 -05:00
bench chore(cli): bump deno_core (#21790) 2024-01-04 18:53:04 +00:00
cache chore: update to Rust 1.75 (#21731) 2024-01-01 23:22:48 +01:00
js fix: strict type check for cross realms (#21669) 2024-01-04 09:42:38 +05:30
lsp fix(lsp): show test code lens for template literal names (#21798) 2024-01-05 12:04:33 +00:00
napi chore: forward v1.39.2 release commit to main (#21793) 2024-01-04 23:52:17 +00:00
npm chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
ops chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
schemas feat: precompile JSX (#20962) 2023-11-01 20:30:23 +00:00
standalone fix(ext/node): add fs.cp, fs.cpSync, promises.cp (#21745) 2024-01-05 18:28:33 +05:30
tests chore(cli): bump deno_core (#21790) 2024-01-04 18:53:04 +00:00
tools perf(coverage): faster source mapping (#21783) 2024-01-04 08:49:17 -05:00
tsc chore: update to Rust 1.75 (#21731) 2024-01-01 23:22:48 +01:00
util chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
auth_tokens.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
build.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
Cargo.toml chore: forward v1.39.2 release commit to main (#21793) 2024-01-04 23:52:17 +00:00
cdp.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
deno.ico
deno_std.rs chore: forward v1.39.2 release commit to main (#21793) 2024-01-04 23:52:17 +00:00
emit.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
entitlements.plist chore: start codesigning mac release builds (#21303) 2023-11-23 15:30:26 -07:00
errors.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
factory.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
file_fetcher.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
graph_util.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
http_util.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
js.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
main.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
module_loader.rs fix(cli): respect exclude option for deno check command (#21779) 2024-01-03 20:43:17 -05:00
node.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
README.md docs(cli): do not need gen doc for cli (#17260) 2023-01-04 13:19:58 +01:00
resolver.rs fix(unstable/byonm): support using an import map with byonm (#21786) 2024-01-04 09:20:58 +05:30
version.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
worker.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00

Deno CLI Crate

crates

This provides the actual deno executable and the user-facing APIs.

The deno crate uses the deno_core to provide the executable.