1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-22 15:10:44 -05:00
denoland-deno/cli
Bartek Iwańczuk a3b3a792b5
fix(coverage): don't type check (#13324)
This commit changes "deno coverage" command not to type check.

Instead of relying on infrastructure for module loading in "deno run";
the code now directly reaches into cache for original and transpiled
sources. In case sources are not available the error is returned to the
user, suggesting to first run "deno test --coverage" command.
2022-01-10 17:36:58 +01:00
..
ast chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
bench chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
compat chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
dts feat(ext/ffi): infer symbol types (#13221) 2022-01-10 21:03:25 +05:30
lsp chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
ops chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
schemas feat(lsp): improve registry completion suggestions (#13023) 2021-12-14 06:24:11 +11:00
tests fix(coverage): don't type check (#13324) 2022-01-10 17:36:58 +01:00
tools fix(coverage): don't type check (#13324) 2022-01-10 17:36:58 +01:00
tsc chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
auth_tokens.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
build.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
cache.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
Cargo.toml chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
checksum.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
config_file.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05: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 2022 (#13306) 2022-01-07 22:09:52 -05:00
diagnostics.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
diff.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
disk_cache.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
emit.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
errors.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
file_fetcher.rs fix(coverage): don't type check (#13324) 2022-01-10 17:36:58 +01:00
file_watcher.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
flags.rs fix: install shim with --allow-all should not output each permission individually (#13325) 2022-01-10 09:22:03 -05:00
flags_allow_net.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
fmt_errors.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
fs_util.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
graph_util.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
http_cache.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
http_util.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
lockfile.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
logger.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
main.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
module_loader.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
proc_state.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
README.md Remove deno_typescript (#6813) 2020-07-20 19:49:57 -04:00
resolver.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
source_maps.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
standalone.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
text_encoding.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
tsc.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
unix_util.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
version.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
windows_util.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05: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.