deno/cli
2021-02-16 13:50:27 +11:00
..
bench chore: Reorganise workers tests (#9493) 2021-02-15 14:48:47 +01:00
dts feat(cli): Deno.emit supports bundling as IIFE (#9291) 2021-02-16 12:02:00 +11:00
lsp feat(lsp): Implement textDocument/signatureHelp (#9330) 2021-02-16 13:34:09 +11:00
ops feat(cli): Deno.emit supports bundling as IIFE (#9291) 2021-02-16 12:02:00 +11:00
tests feat(cli): support auth tokens for accessing private modules (#9508) 2021-02-16 13:50:27 +11:00
tools refactor(cli/tools/repl): merge highlighter into helper (#9448) 2021-02-08 17:25:10 +01:00
tsc feat(lsp): Implement textDocument/signatureHelp (#9330) 2021-02-16 13:34:09 +11:00
ast.rs chore: upgrade crates (#9474) 2021-02-11 17:05:42 +01:00
auth_tokens.rs feat(cli): support auth tokens for accessing private modules (#9508) 2021-02-16 13:50:27 +11:00
build.rs refactor(core): Strongly typed deserialization of JSON ops (#9423) 2021-02-13 11:56:56 -05:00
Cargo.toml v1.7.4 2021-02-13 08:20:49 -05:00
checksum.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
colors.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
deno_dir.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
deno.ico
diagnostics.rs feat: stabilize Deno.shutdown() and Conn#closeWrite() 2021-01-12 16:17:31 -08:00
diff.rs chore: make all tests annotated with #[cfg(test)] (#9347) 2021-02-01 10:55:23 -05:00
disk_cache.rs fix(lsp): handle cached type dependencies properly (#9500) 2021-02-15 20:32:06 +11:00
errors.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
file_fetcher.rs feat(cli): support auth tokens for accessing private modules (#9508) 2021-02-16 13:50:27 +11:00
file_watcher.rs Fix race condition in file watcher (#9105) 2021-01-13 10:55:44 -08:00
flags_allow_net.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
flags.rs feat(cli): support auth tokens for accessing private modules (#9508) 2021-02-16 13:50:27 +11:00
fmt_errors.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
fs_util.rs feat: add markdown support to deno fmt (#8887) 2021-01-19 18:39:35 +01:00
http_cache.rs fix(lsp): handle cached type dependencies properly (#9500) 2021-02-15 20:32:06 +11:00
http_util.rs feat(cli): support auth tokens for accessing private modules (#9508) 2021-02-16 13:50:27 +11:00
import_map.rs fix(cli): import maps handles data URLs (#9437) 2021-02-09 15:05:37 +11:00
info.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
lockfile.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
main_runtime.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
main.rs feat(cli): support auth tokens for accessing private modules (#9508) 2021-02-16 13:50:27 +11:00
media_type.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
module_graph.rs feat(cli): Deno.emit supports bundling as IIFE (#9291) 2021-02-16 12:02:00 +11:00
module_loader.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
program_state.rs fix(cli): check for inline source maps before external ones (#9394) 2021-02-08 10:14:05 +11:00
README.md
source_maps.rs fix(cli/source_map): Don't use file names from source maps (#9462) 2021-02-14 17:38:41 +11:00
specifier_handler.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
standalone.rs docs(cli): fix return type in comment (#9248) 2021-01-25 15:14:25 +09:00
text_encoding.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
tokio_util.rs upgrade: tokio 1.0 (#8779) 2021-01-11 23:50:02 -08:00
tsc_config.rs docs: improve manual around typescript (#8139) 2021-01-20 09:28:58 +11:00
tsc.rs fix(lsp): properly handle static assets (#9476) 2021-02-12 22:49:42 +11:00
version.rs fix: full commit hash in canary compile download (#9166) 2021-01-19 13:53:23 +01:00

Deno CLI Crate

crates docs

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

The deno crate uses the deno_core to provide the executable.