0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00
deno/cli
Bartek Iwańczuk 7b9737b9f4
feat(inspector): pipe console messages between terminal and inspector (#11134)
This commit adds support for piping console messages to inspector.

This is done by "wrapping" Deno's console implementation with default
console provided by V8 by the means of "Deno.core.callConsole" binding.

Effectively each call to "console.*" methods calls a method on Deno's
console and V8's console.
2021-06-27 02:27:50 +02:00
..
ast feat(repl): support import declarations in the REPL (#11086) 2021-06-24 09:00:46 -04:00
bench ci: run Linux release builds in sysroot with Ubuntu 18.04 and LLVM (#10920) 2021-06-23 19:36:05 +00:00
dts chore(ext/console): deprecate Deno.customInspect (#10035) 2021-06-25 16:19:18 +09:00
lsp fix(lsp): reload import registries should not error when the module registries directory does not exist (#11123) 2021-06-25 21:44:27 -04:00
ops fix(#10761): graph errors reported as diagnostics for Deno.emit() (#10767) 2021-06-22 07:27:32 +10:00
tests feat(inspector): pipe console messages between terminal and inspector (#11134) 2021-06-27 02:27:50 +02:00
tools feat(repl): support import declarations in the REPL (#11086) 2021-06-24 09:00:46 -04:00
tsc feat(cli): support "types" when type checking (#10999) 2021-06-22 07:18:32 +10:00
auth_tokens.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
build.rs refactor: unify JavaScript script execution method (#11043) 2021-06-22 01:45:41 +02:00
Cargo.toml chore: upgrade crates (#11007) 2021-06-22 06:15:32 +02:00
checksum.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
colors.rs Remove denort optimization (#10350) 2021-04-26 13:28:38 -04:00
config_file.rs feat(cli): support "types" when type checking (#10999) 2021-06-22 07:18:32 +10: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 fix: move stable/unstable types/APIs to their correct places (#10880) 2021-06-22 03:03:00 +02:00
diff.rs chore: make all tests annotated with #[cfg(test)] (#9347) 2021-02-01 10:55:23 -05:00
disk_cache.rs chore: upgrade Rust to 1.53.0 (#11021) 2021-06-17 15:56:30 -04:00
errors.rs refactor(ast): Change AST parsing error to return struct with message and location (#10911) 2021-06-11 09:03:42 -04:00
file_fetcher.rs refactor: merge deno_file crate into deno_web (#10914) 2021-06-10 15:26:10 +02:00
file_watcher.rs feat: add deno test --watch (#9160) 2021-05-10 08:06:13 +02:00
flags.rs chore: use lsp to get parent process id (#11083) 2021-06-22 21:48:01 -04:00
flags_allow_net.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
fmt_errors.rs fix(#10292): Don't gray-out internal frames (#10293) 2021-04-22 08:30:03 -04:00
fs_util.rs fix(lsp): reload import registries should not error when the module registries directory does not exist (#11123) 2021-06-25 21:44:27 -04: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 fix(cli): Don't statically error on dynamic unmapped bare specifiers (#10618) 2021-05-31 16:37:36 +02: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
logger.rs feat(lsp): add internal debugging logging (#10438) 2021-05-11 14:54:10 +10:00
main.rs chore: use lsp to get parent process id (#11083) 2021-06-22 21:48:01 -04:00
media_type.rs fix(#10815): lsp only responds to formatting for md, json, jsonc (#10816) 2021-06-02 20:29:58 +10:00
module_graph.rs fix(#10761): graph errors reported as diagnostics for Deno.emit() (#10767) 2021-06-22 07:27:32 +10:00
module_loader.rs fix(cli): Don't statically error on dynamic unmapped bare specifiers (#10618) 2021-05-31 16:37:36 +02:00
program_state.rs feat(cli): support "types" when type checking (#10999) 2021-06-22 07:18:32 +10: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 chore: upgrade Rust to 1.53.0 (#11021) 2021-06-17 15:56:30 -04:00
standalone.rs refactor: unify JavaScript script execution method (#11043) 2021-06-22 01:45:41 +02:00
text_encoding.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
tokio_util.rs feat: native HTTP bindings (#9935) 2021-04-08 18:34:15 -04:00
tsc.rs refactor: unify JavaScript script execution method (#11043) 2021-06-22 01:45:41 +02:00
unix_util.rs chore: update copyright headers (#10243) 2021-04-20 14:27:36 +09:00
version.rs Remove denort optimization (#10350) 2021-04-26 13:28:38 -04: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.