1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/cli
Bartek Iwańczuk 2c1d2459e5
fix(repl): errors shouldn't terminate repl (#17082)
This commit changes REPL to never surface errors coming
from code execution, but instead print them as errors
to the REPL itself.
2023-01-05 13:02:43 +01:00
..
args fix: always derive http client from cli flags (#17029) 2022-12-12 21:30:44 -05:00
bench Revert "feat(ops): Fast zero copy string arguments (#16777)" (#17063) 2022-12-15 15:26:10 +00:00
cache fix(coverage): Error if the emit cache is invalid (#16850) 2022-11-29 18:43:54 +01:00
js fix(test): improve how --fail-fast shuts down when hitting limit (#16956) 2022-12-05 16:17:49 -05:00
lsp fix(lsp): handle template literal as first arg in test function (#17076) 2023-01-05 13:02:43 +01:00
napi 1.29.1 (#17064) 2022-12-15 11:32:14 -05:00
node fix(npm): improve exports resolution when type checking (#17071) 2023-01-05 13:02:42 +01:00
npm fix(npm): support loose node semver ranges like >= ^x.x.x (#17037) 2022-12-13 13:01:42 -05:00
ops fix(test): improve how --fail-fast shuts down when hitting limit (#16956) 2022-12-05 16:17:49 -05:00
schemas feat(cli): support deno bench in the config file (#16608) 2022-12-10 02:30:47 +01:00
tests fix(repl): errors shouldn't terminate repl (#17082) 2023-01-05 13:02:43 +01:00
tools fix(repl): errors shouldn't terminate repl (#17082) 2023-01-05 13:02:43 +01:00
tsc fix: re-add Response.json static method (#17061) 2022-12-15 10:33:19 -05:00
util chore: fix recent regression with deno upgrade not handling redirects (#17045) 2022-12-14 08:47:18 -05:00
auth_tokens.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
build.rs fix: upgrade to TS 4.9.4 (#17048) 2022-12-14 13:00:51 -05:00
Cargo.toml 1.29.1 (#17064) 2022-12-15 11:32:14 -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_std.rs 1.29.0 (#17052) 2022-12-15 00:22:54 +01:00
emit.rs fix(coverage): Error if the emit cache is invalid (#16850) 2022-11-29 18:43:54 +01:00
errors.rs refactor: remove deno_graph::Locker usage (#16877) 2022-12-06 14:12:51 -05:00
file_fetcher.rs fix(regression): ensure progress information is shown when downloading remote modules (#17069) 2023-01-05 13:02:42 +01:00
graph_util.rs fix: respect the --quiet flag in more cases (#16998) 2022-12-09 10:54:24 -05:00
http_util.rs chore: fix recent regression with deno upgrade not handling redirects (#17045) 2022-12-14 08:47:18 -05:00
js.rs feat(core): Ability to create snapshots from existing snapshots (#16597) 2022-11-21 14:36:26 +01:00
main.rs fix: always derive http client from cli flags (#17029) 2022-12-12 21:30:44 -05:00
module_loader.rs refactor: create util folder, move nap_sym to napi/sym, move http_cache to cache folder (#16857) 2022-11-28 17:28:54 -05:00
proc_state.rs feat(repl): support npm packages (#16770) 2022-12-13 13:53:32 +01:00
README.md Remove deno_typescript (#6813) 2020-07-20 19:49:57 -04:00
resolver.rs refactor: move lockfile.rs to args module (#16818) 2022-11-25 17:00:28 -05:00
standalone.rs feat: add --inspect-wait flag (#17001) 2022-12-12 15:33:30 +01:00
version.rs feat(cli): check for updates in background (#15974) 2022-10-20 16:15:21 +02:00
worker.rs feat: add --inspect-wait flag (#17001) 2022-12-12 15:33:30 +01: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.