0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00
deno/cli
Andreu Botella ddbb7b83f2
feat(runtime): support classic workers for internal testing (#11338)
This commit implements classic workers, but only when the `--enable-testing-features-do-not-use` flag is provided. This change is not user facing. Classic workers are used extensively in WPT tests. The classic workers do not support loading from disk, and do not support TypeScript.

Co-authored-by: Luca Casonato <hello@lcas.dev>
2021-08-16 14:29:54 +02:00
..
ast fix: parse error when transpiling code with BOM (#11688) 2021-08-16 09:28:29 +02:00
bench chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
dts fix: don't statically type name on Deno.errors (#11715) 2021-08-15 15:17:07 +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 test(ext/http): add test for incomplete HTTP message and fix resource leak (#11717) 2021-08-16 13:43:43 +02:00
tools fix: parse error when transpiling code with BOM (#11688) 2021-08-16 09:28:29 +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 cleanup(ext/web/BlobStore): avoid redundant Arc<Box<T>> alloc (#11693) 2021-08-14 10:27:27 +02: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 refactor: normalize is_supported_ check naming (#11698) 2021-08-14 10:17:21 +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 feat(runtime): support classic workers for internal testing (#11338) 2021-08-16 14:29:54 +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 feat(runtime): support classic workers for internal testing (#11338) 2021-08-16 14:29:54 +02:00
text_encoding.rs fix: parse error when transpiling code with BOM (#11688) 2021-08-16 09:28:29 +02: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.