1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-27 16:10:57 -05:00
denoland-deno/cli
Bartek Iwańczuk 3360b8ee37
fix(core): inspector works if no "Runtime.runIfWaitingForDebugger" message is sent (#13191)
This commit changes flow in inspector code to no longer require 
"Runtime.runIfWaitingForDebugger" message to complete a handshake.

Even though clients like Chrome DevTools always send this message on startup,
it is against the protocol to require this message to start an inspector
session.

Instead "Runtime.runIfWaitingForDebugger" is required only when running with
"--inspect-brk" flag, which matches behavior of Node.js.
2022-01-05 16:46:53 +01:00
..
ast fix(cli): include JSON modules in bundle (#13188) 2022-01-05 16:45:53 +01:00
bench fix(bench): migrate to v8 from rusty_v8 (#12571) 2021-10-28 21:40:27 +11:00
compat v1.17.1 2021-12-22 18:48:06 +01:00
dts chore: add codeblocks for lib.deno.shared_globals.d.ts (#13117) 2021-12-17 02:36:03 +01:00
lsp cleanup(cli/lsp): use op Extensions (#13225) 2022-01-05 16:46:35 +01:00
ops cleanup(cli): use op Extensions (#13223) 2022-01-05 16:46:20 +01:00
schemas feat(lsp): improve registry completion suggestions (#13023) 2021-12-14 06:24:11 +11:00
tests fix(core): inspector works if no "Runtime.runIfWaitingForDebugger" message is sent (#13191) 2022-01-05 16:46:53 +01:00
tools cleanup(cli): use op Extensions (#13223) 2022-01-05 16:46:20 +01:00
tsc feat(cli): update to TypeScript 4.5 (#12410) 2021-12-10 09:12:21 +11:00
auth_tokens.rs feat(cli): Support Basic authentication in DENO_AUTH_TOKENS (#11910) 2021-09-08 06:18:11 +02:00
build.rs feat(cli): update to TypeScript 4.5 (#12410) 2021-12-10 09:12:21 +11:00
cache.rs chore: update deno_graph and deno_doc (#13173) 2021-12-22 14:25:06 +01:00
Cargo.toml fix(coverage): use only string byte indexes and 0-indexed line numbers (#13190) 2022-01-05 16:45:58 +01:00
checksum.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
config_file.rs chore: update deno_graph and deno_doc (#13173) 2021-12-22 14:25:06 +01: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 refactor: use once_cell instead of lazy_static (#13135) 2021-12-18 16:14:42 -05:00
diff.rs refactor: Remove duplicated colors.rs file (#11990) 2021-09-12 12:04:17 -04:00
disk_cache.rs chore: upgrade Rust to 1.54.0 (#11554) 2021-07-30 15:03:41 +02:00
emit.rs refactor(cli): use GraphData for check and emit (#12960) 2021-12-16 21:45:41 +11:00
errors.rs chore: update deno_graph and deno_doc (#13173) 2021-12-22 14:25:06 +01:00
file_fetcher.rs chore: update deno_graph and deno_doc (#13173) 2021-12-22 14:25:06 +01:00
file_watcher.rs feat(watcher): clear screen on each restart (#12613) 2021-12-11 01:12:25 +01:00
flags.rs refactor: use once_cell instead of lazy_static (#13135) 2021-12-18 16:14:42 -05:00
flags_allow_net.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
fmt_errors.rs fix(cli/fmt_errors): don't panic on source line formatting errors (#12449) 2021-10-18 18:05:36 +02:00
fs_util.rs fix(lsp): lsp should respect include/exclude files in format config (#12876) 2021-11-24 15:14:19 -05:00
graph_util.rs chore: update deno_graph and deno_doc (#13173) 2021-12-22 14:25:06 +01:00
http_cache.rs feat(lsp): registry suggestion cache respects cache headers (#13010) 2021-12-09 22:16:17 +11:00
http_util.rs feat(lsp): supply accept header when fetching registry config (#13159) 2021-12-21 13:40:22 +11:00
lockfile.rs feat(cli): use deno fmt for lock and coverage files (#13018) 2021-12-07 19:21:04 -05:00
logger.rs feat: REPL import specifier auto-completions (#13078) 2021-12-15 13:23:43 -05:00
main.rs cleanup(cli): use op Extensions (#13223) 2022-01-05 16:46:20 +01:00
module_loader.rs refactor: Cleanup core/modules.rs (#13149) 2021-12-21 15:53:46 +01:00
proc_state.rs chore: update deno_graph and deno_doc (#13173) 2021-12-22 14:25:06 +01:00
README.md Remove deno_typescript (#6813) 2020-07-20 19:49:57 -04:00
resolver.rs feat(cli): support React 17 JSX transforms (#12631) 2021-11-09 12:26:39 +11:00
source_maps.rs refactor: Rename ProgramState to ProcState (#12204) 2021-09-24 11:10:42 -04:00
standalone.rs cleanup(cli): use op Extensions (#13223) 2022-01-05 16:46:20 +01:00
text_encoding.rs fix(doc): fix rustdoc bare_urls warning (#11921) 2021-09-05 16:22:45 +02:00
tsc.rs refactor: use once_cell instead of lazy_static (#13135) 2021-12-18 16:14:42 -05: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
windows_util.rs chore: upgrade Rust to 1.56.0 (#12514) 2021-10-26 07:17:11 +02: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.