deno/cli
Nathan Whitaker 8cefe97b09
fix(bundle): only replace require shim in js files, spruce up output (#29892)
We were trying to do the hack of replacing the esbuild require shim on
every output file, regardless of whether it was js/ts.
This fixes that.

In addition, this spruces up the output of deno bundle a bit.

before:
![Screenshot 2025-06-25 at 6 33
55 PM](https://github.com/user-attachments/assets/9f2a4bfb-7f00-422e-8b45-84141b8447b7)

after:
![Screenshot 2025-06-25 at 6 33
32 PM](https://github.com/user-attachments/assets/567cee6b-8f72-4722-878a-849704ecbe79)
2025-06-26 18:35:19 +00:00
..
args feat: add 'deno update' subcommand (#29187) 2025-06-26 19:13:29 +02:00
bench refactor(lsp): separate document and module storage (#28469) 2025-03-31 22:25:27 +01:00
cache feat(unstable): bytes and text imports (#29855) 2025-06-26 11:21:16 -04:00
js feat(unstable): support comments in lint plugin (#29189) 2025-05-08 21:59:36 +02:00
lib feat: stabilize --allow-net subdomain wildcards (#29902) 2025-06-26 17:00:43 +00:00
lsp feat(unstable): bytes and text imports (#29855) 2025-06-26 11:21:16 -04:00
ops chore: Rust 1.86.0 (#29435) 2025-05-25 23:40:48 +02:00
rt feat: stabilize --allow-net subdomain wildcards (#29902) 2025-06-26 17:00:43 +00:00
schemas chore: add back node-globals to json schema (#29899) 2025-06-26 17:11:18 +00:00
snapshot 2.3.7 (#29853) 2025-06-23 23:51:36 +02:00
standalone feat: stabilize --allow-net subdomain wildcards (#29902) 2025-06-26 17:00:43 +00:00
tools fix(bundle): only replace require shim in js files, spruce up output (#29892) 2025-06-26 18:35:19 +00:00
tsc feat(unstable): bytes and text imports (#29855) 2025-06-26 11:21:16 -04:00
util feat(bundle): add watch mode to bundle (#29795) 2025-06-18 08:35:12 -07:00
build.rs fix(dts): add Atomics.pause, Promise.try and RegExp.escape (#29186) 2025-05-08 23:16:35 +02:00
Cargo.toml 2.3.7 (#29853) 2025-06-23 23:51:36 +02:00
cdp.rs fix(cli/hmr): print compile error with exception details (#27597) 2025-05-08 23:39:31 +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 feat(unstable): bytes and text imports (#29855) 2025-06-26 11:21:16 -04:00
entitlements.plist chore: start codesigning mac release builds (#21303) 2023-11-23 15:30:26 -07:00
factory.rs feat: stabilize --allow-net subdomain wildcards (#29902) 2025-06-26 17:00:43 +00:00
file_fetcher.rs chore: use aws_lc_rs (#28244) 2025-06-19 01:07:00 -07:00
graph_container.rs fix: load changed non-remote dynamic imports at runtime (#29413) 2025-05-26 21:38:51 +00:00
graph_util.rs feat(unstable): bytes and text imports (#29855) 2025-06-26 11:21:16 -04:00
http_util.rs fix(npm): respect etag for npm packument caching (#29130) 2025-05-02 09:49:05 -04:00
integration_tests_runner.rs refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
jsr.rs fix(vendor): store remote version metadata checksum in vendor folder to ensure lockfile uses that (#29433) 2025-05-29 23:46:15 -04:00
main.rs feat(unstable): bytes and text imports (#29855) 2025-06-26 11:21:16 -04:00
module_loader.rs feat(unstable): bytes and text imports (#29855) 2025-06-26 11:21:16 -04:00
node.rs refactor: upgrade to deno_graph 0.95 (#29575) 2025-06-03 17:52:23 +00:00
npm.rs fix(install/global): resolve bin name from npm packument (#29884) 2025-06-25 15:10:26 -04:00
README.md docs(cli): do not need gen doc for cli (#17260) 2023-01-04 13:19:58 +01:00
registry.rs feat(unstable): deploy subcommand (#29407) 2025-05-30 16:28:49 +00:00
resolver.rs refactor: add NpmInstallerFactory and push more functionality down into deno_npm_installer (#29342) 2025-05-17 15:10:06 -04:00
task_runner.rs feat: deprecate --unstable-node-globals flag (#29887) 2025-06-26 12:49:24 +02:00
type_checker.rs feat(unstable): bytes and text imports (#29855) 2025-06-26 11:21:16 -04:00
worker.rs feat: stabilize --allow-net subdomain wildcards (#29902) 2025-06-26 17:00:43 +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.