1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-10 16:11:13 -05:00
denoland-deno/cli
Casper Beyer 605f6119e9
fix(cli): retain input order of remote specifiers (#11700)
Specifier collection partitions remote specifiers in their own 
group which is appended to the collected specifiers at the 
end of the routine meaning that the input order isn't respected 
for remote specifiers.
2021-08-14 10:16:24 +02:00
..
ast refactor: make ParsedModule implement Sync (#11581) 2021-08-06 10:36:16 -04:00
bench chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
dts feat: add new esnext types (#11627) 2021-08-10 10:33:08 +02:00
lsp chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ops refactor(cli/tools/test_runner): split reporter into distinct stages (#11395) 2021-07-14 21:05:16 +02:00
schemas fix(cli): info now displays type reference deps (#11478) 2021-07-22 15:34:28 +10:00
tests fix(ext/crypto): importKey() SecurityError on non-extractable keys (#11662) 2021-08-13 23:20:44 +02:00
tools refactor(cli): generalize module specifier collection (#11679) 2021-08-13 12:06:49 +02:00
tsc chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
auth_tokens.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
build.rs feat: add new esnext types (#11627) 2021-08-10 10:33:08 +02:00
Cargo.toml mark cafile tests as flaky (#11649) 2021-08-11 17:38:07 +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 chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04: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 feat: ffi to replace plugins (#11152) 2021-08-06 23:28:10 +02:00
diff.rs fix(diff): better handling of text with only line ending differences (#11212) 2021-07-02 10:16:09 -04:00
disk_cache.rs chore: upgrade Rust to 1.54.0 (#11554) 2021-07-30 15:03:41 +02: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 chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
file_watcher.rs chore: use parking_lot for synchronization primitives to align with tokio (#11289) 2021-07-06 23:48:01 -04:00
flags.rs doc: improve coverage CLI help text (#11646) 2021-08-12 10:21:38 +02:00
flags_allow_net.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
fmt_errors.rs chore: upgrade Rust to 1.54.0 (#11554) 2021-07-30 15:03:41 +02:00
fs_util.rs fix(cli): retain input order of remote specifiers (#11700) 2021-08-14 10:16:24 +02:00
http_cache.rs chore: upgrade Rust to 1.54.0 (#11554) 2021-07-30 15:03:41 +02:00
http_util.rs chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_map.rs chore: surface import map JSON parse error to user (#11573) 2021-08-03 15:29:12 -04:00
info.rs fix(cli): info now displays type reference deps (#11478) 2021-07-22 15:34:28 +10: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 refactor(cli): generalize module specifier collection (#11679) 2021-08-13 12:06:49 +02: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 chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04: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 fix: correct spelling of certificate in --unsafely-ignore-certificate-errors warning message (#11634) 2021-08-10 12:47:44 -04: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: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
standalone.rs refactor: --unsafely-ignore-certificate-errors (#11629) 2021-08-10 13:19:45 +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 chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04: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.