deno/cli
Bartek Iwańczuk 9ff468df73
feat: Standalone lite binaries and cross compilation (#9141)
This commit adds --target and --lite flags to deno compile subcommand.

--target allows to cross-compile binary to different target architectures by
fetching appropriate binary from remote server on first run. All downloaded
binaries are stored in "$DENO_DIR/dl".

--lite allows to use lite version of the runtime (ie. the one that doesn't contain
built-in tooling like formatter or linter).
2021-01-19 03:40:22 +01:00
..
bench bench: fix off-by-one error in thread_count (#9145) 2021-01-18 05:00:51 -05:00
dts feat: Add WorkerOptions interface to type declarations (#9147) 2021-01-19 03:26:39 +01:00
lsp refactor(lsp): don't duplicate fields present in DocumentSpan (#9131) 2021-01-16 13:00:42 +01:00
ops fix(cli): Check permissions for Deno.emit() (#9139) 2021-01-18 08:58:23 +11:00
tests feat: Add WorkerOptions interface to type declarations (#9147) 2021-01-19 03:26:39 +01:00
tools feat: Standalone lite binaries and cross compilation (#9141) 2021-01-19 03:40:22 +01:00
tsc feat(lsp): Add textDocument/implementation (#9071) 2021-01-13 08:53:27 +11:00
ast.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
build.rs fix: incremental build for deno declaration files (#9138) 2021-01-17 15:12:00 +01:00
Cargo.toml upgrade: deno_lint to 0.2.16 (#9127) 2021-01-15 19:20:01 +01:00
checksum.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
colors.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +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 feat: stabilize Deno.shutdown() and Conn#closeWrite() 2021-01-12 16:17:31 -08:00
diff.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
disk_cache.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
errors.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
file_fetcher.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
file_watcher.rs Fix race condition in file watcher (#9105) 2021-01-13 10:55:44 -08:00
flags.rs feat: Standalone lite binaries and cross compilation (#9141) 2021-01-19 03:40:22 +01:00
flags_allow_net.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
fmt_errors.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
fs_util.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
http_cache.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
http_util.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
import_map.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
info.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
lockfile.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
main.rs feat: Standalone lite binaries and cross compilation (#9141) 2021-01-19 03:40:22 +01:00
main_runtime.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
media_type.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
module_graph.rs fix(cli): Check permissions for Deno.emit() (#9139) 2021-01-18 08:58:23 +11:00
module_loader.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
program_state.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
README.md Remove deno_typescript (#6813) 2020-07-20 19:49:57 -04:00
source_maps.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
specifier_handler.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
standalone.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
text_encoding.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
tokio_util.rs upgrade: tokio 1.0 (#8779) 2021-01-11 23:50:02 -08:00
tsc.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
tsc_config.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
version.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +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.