1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-18 03:44:05 -05:00
denoland-deno/cli
Bartek Iwańczuk d332bf1132
feat: deno test --trace-ops (#13770)
This commit adds "--trace-ops" flag to "deno test" subcommand.

This flag enables saving of stack traces for async ops, that before were always
saved. While the feature proved to be very useful it comes with a significant performance
hit, it's caused by excessive source mapping of stack frames.
2022-02-25 16:14:46 +01:00
..
bench refactor(lsp): remove circular dependency between LanguageServer and DiagnosticsServer (#13577) 2022-02-02 18:02:59 -05:00
compat chore: upgrade to Rust 1.59 (#13767) 2022-02-24 20:03:12 -05:00
dts docs: code example to structuredClone, CompressionStream, DecompressionStream (#13719) 2022-02-22 20:41:59 +01:00
lsp chore: upgrade to Rust 1.59 (#13767) 2022-02-24 20:03:12 -05:00
ops refactor: integrate deno_graph breaking changes (#13495) 2022-02-01 09:33:57 +11:00
schemas feat: allow specification of import map in config file (#13739) 2022-02-23 10:51:14 +11:00
tests feat: deno test --trace-ops (#13770) 2022-02-25 16:14:46 +01:00
tools feat: deno test --trace-ops (#13770) 2022-02-25 16:14:46 +01:00
tsc perf(lsp): cancellable TS diagnostics (#13565) 2022-02-02 09:25:22 -05:00
auth_tokens.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
build.rs chore: re-enable wgpu_sync (#13453) 2022-01-24 23:47:05 +01:00
cache.rs chore: upgrade to Rust 1.59 (#13767) 2022-02-24 20:03:12 -05:00
Cargo.toml chore: upgrade to Rust 1.59 (#13767) 2022-02-24 20:03:12 -05:00
cdp.rs refactor: factor out CDP message types (#13551) 2022-02-07 17:05:49 +01:00
checksum.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
config_file.rs fix(cli): disable config discovery for remote script (#13745) 2022-02-25 14:39:18 +09: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 fix: don't crash when $HOME is a relative path (#13581) 2022-02-03 14:08:17 +01:00
diagnostics.rs chore: upgrade to rust 1.58 (#13377) 2022-01-15 07:10:12 +01:00
diff.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
disk_cache.rs chore: upgrade to Rust 1.59 (#13767) 2022-02-24 20:03:12 -05:00
emit.rs refactor: integrate deno_graph breaking changes (#13495) 2022-02-01 09:33:57 +11:00
errors.rs refactor: integrate deno_graph breaking changes (#13495) 2022-02-01 09:33:57 +11:00
file_fetcher.rs refactor: integrate deno_graph breaking changes (#13495) 2022-02-01 09:33:57 +11:00
file_watcher.rs feat(cli): add "--no-clear-screen" flag (#13454) 2022-01-31 17:39:39 +01:00
flags.rs feat: deno test --trace-ops (#13770) 2022-02-25 16:14:46 +01:00
flags_allow_net.rs chore: upgrade clap to v3 (#13266) 2022-01-14 17:38:17 +01:00
fmt_errors.rs chore: upgrade to rust 1.58 (#13377) 2022-01-15 07:10:12 +01:00
fs_util.rs feat: deno vendor (#13670) 2022-02-16 13:14:19 -05:00
graph_util.rs refactor: integrate deno_graph breaking changes (#13495) 2022-02-01 09:33:57 +11: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: upgrade to Rust 1.59 (#13767) 2022-02-24 20:03:12 -05:00
module_loader.rs refactor: integrate deno_graph breaking changes (#13495) 2022-02-01 09:33:57 +11:00
proc_state.rs chore: upgrade to Rust 1.59 (#13767) 2022-02-24 20:03:12 -05:00
README.md Remove deno_typescript (#6813) 2020-07-20 19:49:57 -04:00
resolver.rs refactor: integrate deno_graph breaking changes (#13495) 2022-02-01 09:33:57 +11:00
source_maps.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
standalone.rs chore: upgrade to Rust 1.59 (#13767) 2022-02-24 20:03:12 -05:00
text_encoding.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
tsc.rs chore: upgrade to Rust 1.59 (#13767) 2022-02-24 20:03:12 -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.