1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-30 16:40:57 -05:00
denoland-deno/cli
Nayeem Rahman 58101fa904
perf(lsp): cancel ts requests on future drop (#21387)
When an old request is obsoleted while the user is typing, the client
will say so to the server and tower-lsp will drop the future associated
with that request.

This wires that up to the ts server by having any request's token be
cancelled when the surrounding state is dropped.
2023-11-30 18:32:18 +01:00
..
args feat(unstable): tar up directory with deno.json (#21228) 2023-11-24 03:06:45 +01:00
bench Revert "chore: update to std@0.207.0 (#21284)" (#21295) 2023-11-24 03:05:26 +01:00
cache feat(unstable): tar up directory with deno.json (#21228) 2023-11-24 03:06:45 +01:00
js perf: move jupyter esm out of main snapshot (#21163) 2023-11-17 11:30:16 +09:00
lsp perf(lsp): cancel ts requests on future drop (#21387) 2023-11-30 18:32:18 +01:00
napi 1.38.3 (#21319) 2023-11-24 04:49:42 +01:00
npm perf: snapshot runtime ops (#21127) 2023-11-17 11:28:44 +09:00
ops perf: move jupyter esm out of main snapshot (#21163) 2023-11-17 11:30:16 +09:00
schemas feat: precompile JSX (#20962) 2023-11-01 20:30:23 +00:00
standalone perf: move jupyter esm out of main snapshot (#21163) 2023-11-17 11:30:16 +09:00
tests fix(node): spawnSync's status was incorrect (#21359) 2023-11-30 18:32:05 +01:00
tools feat(unstable): tar up directory with deno.json (#21228) 2023-11-24 03:06:45 +01:00
tsc docs: update Deno.* deprecation notices (#21283) 2023-11-24 03:05:26 +01:00
util feat(unstable): tar up directory with deno.json (#21228) 2023-11-24 03:06:45 +01:00
auth_tokens.rs chore: update base64 crate (#20877) 2023-10-26 18:39:04 +02:00
build.rs fix: use short git hash for deno version (#21218) 2023-11-17 11:30:35 +09:00
Cargo.toml 1.38.3 (#21319) 2023-11-24 04:49:42 +01:00
cdp.rs refactor: unify CDP types in a single module (#21094) 2023-11-05 22:58:59 +00:00
deno.ico
deno_std.rs 1.38.3 (#21319) 2023-11-24 04:49:42 +01:00
emit.rs feat: deno run --unstable-hmr (#20876) 2023-10-31 01:25:58 +01:00
entitlements.plist chore: start codesigning mac release builds (#21303) 2023-11-24 03:06:45 +01:00
errors.rs fix: improve deno doc --lint error messages (#21156) 2023-11-17 11:27:51 +09:00
factory.rs perf: move jupyter esm out of main snapshot (#21163) 2023-11-17 11:30:16 +09:00
file_fetcher.rs chore: fix and deflake cert store fetch tests (#21241) 2023-11-24 03:03:25 +01:00
graph_util.rs feat(unstable): Workspaces support (#20410) 2023-11-17 11:30:53 +09:00
http_util.rs feat(unstable): tar up directory with deno.json (#21228) 2023-11-24 03:06:45 +01:00
js.rs build: allow disabling snapshots for dev (#20048) 2023-08-06 01:47:15 +02:00
main.rs feat(unstable): tar up directory with deno.json (#21228) 2023-11-24 03:06:45 +01:00
module_loader.rs feat(unstable): Workspaces support (#20410) 2023-11-17 11:30:53 +09:00
node.rs chore: rename some helpers on the Fs trait (#20097) 2023-08-08 16:28:18 -04:00
README.md docs(cli): do not need gen doc for cli (#17260) 2023-01-04 13:19:58 +01:00
resolver.rs fix(unstable/byonm): improve error messages (#20987) 2023-10-26 21:22:15 -04:00
version.rs refactor: make version and user_agent &'static str (#18400) 2023-03-23 23:27:58 +01:00
worker.rs fix: 'Promise was collected' error in REPL/jupyter (#21272) 2023-11-24 03:05:26 +01:00

Deno CLI Crate

crates

This provides the actual deno executable and the user-facing APIs.

The deno crate uses the deno_core to provide the executable.