1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli
Satya Rohith 543080de55
fix(runtime/readFile*): close resources on error during read (#10059)
This commit ensures readFile, readFileSync, readTextFile,
and readTextFileSync does not leak resources on error.
2021-04-08 16:36:52 +02:00
..
bench bench: track Date.now() as upper bound reference (#9922) 2021-03-29 01:12:19 +02:00
dts docs: export EmitOptions and EmitResult (#10037) 2021-04-06 22:33:02 +09:00
lsp fix(lsp): don't error on tsc debug failures for code actions (#10047) 2021-04-07 19:47:31 +10:00
ops refactor(ops): remove variadic buffers (#9944) 2021-04-02 09:47:57 -04:00
tests fix(runtime/readFile*): close resources on error during read (#10059) 2021-04-08 16:36:52 +02:00
tools remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
tsc feat(lsp): implement textDocument/foldingRange (#9900) 2021-04-02 17:21:07 +11:00
ast.rs upgrade: Rust 1.51.0 (#9895) 2021-03-25 19:17:37 +01:00
auth_tokens.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
build.rs refactor: add deno_file op crate (#10019) 2021-04-06 12:55:05 +02:00
Cargo.toml chore(cli): Upgrade jsonc_parser to 0.17 (#9977) 2021-04-04 07:27:13 -04:00
checksum.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
colors.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
deno.ico fix(cli): add icon and metadata to deno.exe on Windows (#6693) 2020-07-15 21:54:38 +02:00
deno_dir.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
diagnostics.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
diff.rs chore: make all tests annotated with #[cfg(test)] (#9347) 2021-02-01 10:55:23 -05:00
disk_cache.rs feat: blob URL support (#10045) 2021-04-07 15:22:14 +02:00
errors.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
file_fetcher.rs feat: blob URL support (#10045) 2021-04-07 15:22:14 +02:00
file_watcher.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
flags.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
flags_allow_net.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
fmt_errors.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
fs_util.rs upgrade: Rust 1.51.0 (#9895) 2021-03-25 19:17:37 +01:00
http_cache.rs feat: blob URL support (#10045) 2021-04-07 15:22:14 +02:00
http_util.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
import_map.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
info.rs feat(cli): represent type dependencies in info (#9630) 2021-03-01 22:49:58 +11:00
lockfile.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
main.rs feat: blob URL support (#10045) 2021-04-07 15:22:14 +02:00
main_runtime.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
media_type.rs upgrade: Rust 1.51.0 (#9895) 2021-03-25 19:17:37 +01:00
module_graph.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
module_loader.rs Make ModuleSpecifier a type alias, not wrapper struct (#9531) 2021-02-17 13:47:18 -05:00
program_state.rs feat: blob URL support (#10045) 2021-04-07 15:22:14 +02:00
README.md Remove deno_typescript (#6813) 2020-07-20 19:49:57 -04:00
source_maps.rs feat: blob URL support (#10045) 2021-04-07 15:22:14 +02:00
specifier_handler.rs feat: blob URL support (#10045) 2021-04-07 15:22:14 +02:00
standalone.rs feat: blob URL support (#10045) 2021-04-07 15:22:14 +02: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.rs feat: blob URL support (#10045) 2021-04-07 15:22:14 +02:00
tsc_config.rs chore(cli): Upgrade jsonc_parser to 0.17 (#9977) 2021-04-04 07:27:13 -04: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.