1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 04:52:26 -05:00
denoland-deno/cli
David Sherret 57dd66ec3d
refactor: move denort to separate crate (#27688)
This slightly degrades the performance of CJS export analysis on
subsequent runs because I changed it to no longer cache in the DENO_DIR
with this PR (denort now properly has no idea about the DENO_DIR). We'll
have to change it to embed this data in the binary and that will also
allow us to get rid of swc in denort (will do that in a follow-up PR).
2025-01-17 20:39:29 +00:00
..
args refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
bench chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
cache refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
js refactor: add 'deno_os' crate (#27655) 2025-01-14 17:29:36 +01:00
lib refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
lsp refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
npm refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
ops refactor: update deno_core for error refactor (#26867) 2025-01-08 14:52:32 -08:00
rt refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
schemas fix(task): support tasks without commands (#27191) 2024-12-19 18:10:58 +00:00
snapshot refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
standalone refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
tools refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
tsc refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
util refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
build.rs refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
Cargo.toml refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
cdp.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
clippy.toml refactor: do not use deno_fs::FileSystem everywhere (#27508) 2024-12-31 11:29:07 -05:00
deno.ico
emit.rs refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
entitlements.plist chore: start codesigning mac release builds (#21303) 2023-11-23 15:30:26 -07:00
factory.rs refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
file_fetcher.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
graph_container.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
graph_util.rs refactor: move CliNpmResolver to deno_resolver::npm::NpmResolver (#27659) 2025-01-14 10:01:05 -05:00
http_util.rs refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
integration_tests_runner.rs refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
js.rs refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
jsr.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
main.rs refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
module_loader.rs refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
node.rs refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
README.md docs(cli): do not need gen doc for cli (#17260) 2023-01-04 13:19:58 +01:00
resolver.rs refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
task_runner.rs refactor: add 'deno_os' crate (#27655) 2025-01-14 17:29:36 +01:00
worker.rs refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +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.