1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
denoland-deno/cli
Bartek Iwańczuk b657d743a2
refactor: remove CliState, use OpState, add CliModuleLoader (#7588)
- remove "CliState.workers" and "CliState.next_worker_id", instead
store them on "OpState" using type aliases.
- remove "CliState.global_timer" and "CliState.start_time", instead
store them on "OpState" using type aliases.
- remove "CliState.is_internal", instead pass it to Worker::new
- move "CliState::permissions" to "OpState"
- move "CliState::main_module" to "OpState"
- move "CliState::global_state" to "OpState"
- move "CliState::check_unstable()" to "GlobalState"
- change "cli_state()" to "global_state()"
- change "deno_core::ModuleLoader" trait to pass "OpState" to callbacks
- rename "CliState" to "CliModuleLoader"
2020-09-20 01:17:35 +02:00
..
bench chore: add no_check_hello benchmark (#7458) 2020-09-14 12:25:06 +02:00
dts fix(cli/rt): make some web API constructors illegal at runtime (#7468) 2020-09-19 23:30:59 +02:00
ops refactor: remove CliState, use OpState, add CliModuleLoader (#7588) 2020-09-20 01:17:35 +02:00
rt fix(cli/rt): make some web API constructors illegal at runtime (#7468) 2020-09-19 23:30:59 +02:00
tests fix(cli/rt): make some web API constructors illegal at runtime (#7468) 2020-09-19 23:30:59 +02:00
tsc refactor: deno_fetch op crate (#7524) 2020-09-18 09:20:55 -04:00
ast.rs cli/msg.rs -> cli/media_type.rs 2020-09-15 11:55:51 -04:00
build.rs refactor: deno_fetch op crate (#7524) 2020-09-18 09:20:55 -04:00
Cargo.toml v1.4.1 2020-09-18 21:28:11 +02:00
checksum.rs refactor: util functions take slices instead of heap values (#6547) 2020-06-29 14:17:37 +02:00
colors.rs fix(cli/fmt): make fmt output more readable (#7534) 2020-09-17 21:48:08 -04:00
coverage.rs refactor(cli/coverage): use json and error check protocol responses (#7577) 2020-09-19 14:01:56 +02: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 Move JSON ops to deno_core (#7336) 2020-09-06 02:34:02 +02:00
diagnostics.rs chore: add systemMemoryInfo unstable diagnostic (#7435) 2020-09-12 16:12:14 +02:00
diff.rs fix(cli/fmt): make fmt output more readable (#7534) 2020-09-17 21:48:08 -04:00
disk_cache.rs Re-export deno_core::url (#7525) 2020-09-16 14:28:07 -04:00
errors.rs Use reqwest from deno_fetch export (#7562) 2020-09-18 13:07:09 -04:00
file_fetcher.rs Use reqwest from deno_fetch export (#7562) 2020-09-18 13:07:09 -04:00
file_watcher.rs refactor: use the 'anyhow' crate instead of 'ErrBox' (#7476) 2020-09-15 01:50:52 +02:00
flags.rs fix(bundle, eval, repl): Add missing flags (#7414) 2020-09-18 13:09:11 -04:00
flags_allow_net.rs Re-export deno_core::url (#7525) 2020-09-16 14:28:07 -04:00
fmt.rs fix(cli/fmt): canonicalize files in current dir (#7508) 2020-09-18 13:03:37 -04:00
fmt_errors.rs refactor: use the 'anyhow' crate instead of 'ErrBox' (#7476) 2020-09-15 01:50:52 +02:00
fs.rs refactor: use the 'anyhow' crate instead of 'ErrBox' (#7476) 2020-09-15 01:50:52 +02:00
global_state.rs refactor: remove CliState, use OpState, add CliModuleLoader (#7588) 2020-09-20 01:17:35 +02:00
global_timer.rs refactor: remove CliState, use OpState, add CliModuleLoader (#7588) 2020-09-20 01:17:35 +02:00
http_cache.rs Re-export deno_core::url (#7525) 2020-09-16 14:28:07 -04:00
http_util.rs Use reqwest from deno_fetch export (#7562) 2020-09-18 13:07:09 -04:00
import_map.rs Re-export deno_core::url (#7525) 2020-09-16 14:28:07 -04:00
info.rs Re-export deno_core::url (#7525) 2020-09-16 14:28:07 -04:00
inspector.rs Make JsRuntimeState private (#7484) 2020-09-14 23:49:12 -04:00
installer.rs Re-export deno_core::url (#7525) 2020-09-16 14:28:07 -04:00
js.rs refactor: deno_fetch op crate (#7524) 2020-09-18 09:20:55 -04:00
lint.rs cli/msg.rs -> cli/media_type.rs 2020-09-15 11:55:51 -04:00
lockfile.rs Move JSON ops to deno_core (#7336) 2020-09-06 02:34:02 +02:00
main.rs refactor: remove CliState, use OpState, add CliModuleLoader (#7588) 2020-09-20 01:17:35 +02:00
media_type.rs cli/msg.rs -> cli/media_type.rs 2020-09-15 11:55:51 -04:00
metrics.rs refactor: move fields from CliState to OpState (#7558) 2020-09-18 20:39:47 +02:00
module_graph.rs cli/msg.rs -> cli/media_type.rs 2020-09-15 11:55:51 -04:00
op_fetch_asset.rs refactor(core): rename CoreIsolate to JsRuntime (#7373) 2020-09-06 21:44:29 +02:00
permissions.rs refactor: remove CliState, use OpState, add CliModuleLoader (#7588) 2020-09-20 01:17:35 +02:00
README.md Remove deno_typescript (#6813) 2020-07-20 19:49:57 -04:00
repl.rs refactor: use the 'anyhow' crate instead of 'ErrBox' (#7476) 2020-09-15 01:50:52 +02:00
resolve_addr.rs refactor: use the 'anyhow' crate instead of 'ErrBox' (#7476) 2020-09-15 01:50:52 +02:00
signal.rs refactor: use the 'anyhow' crate instead of 'ErrBox' (#7476) 2020-09-15 01:50:52 +02:00
source_maps.rs refactor: use the 'anyhow' crate instead of 'ErrBox' (#7476) 2020-09-15 01:50:52 +02:00
state.rs refactor: remove CliState, use OpState, add CliModuleLoader (#7588) 2020-09-20 01:17:35 +02:00
system_loader.js Remove deno_typescript (#6813) 2020-07-20 19:49:57 -04:00
system_loader_es5.js Remove deno_typescript (#6813) 2020-07-20 19:49:57 -04:00
test_runner.rs Re-export deno_core::url (#7525) 2020-09-16 14:28:07 -04:00
text_encoding.rs Move JSON ops to deno_core (#7336) 2020-09-06 02:34:02 +02:00
tokio_util.rs set maximum size of thread pool to 31 (#7290) 2020-08-31 17:38:25 -04:00
tsc.rs refactor: remove CliState, use OpState, add CliModuleLoader (#7588) 2020-09-20 01:17:35 +02:00
tsc_config.rs refactor: use the 'anyhow' crate instead of 'ErrBox' (#7476) 2020-09-15 01:50:52 +02:00
upgrade.rs Use reqwest from deno_fetch export (#7562) 2020-09-18 13:07:09 -04:00
version.rs Move JSON ops to deno_core (#7336) 2020-09-06 02:34:02 +02:00
web_worker.rs refactor: remove CliState, use OpState, add CliModuleLoader (#7588) 2020-09-20 01:17:35 +02:00
worker.rs refactor: remove CliState, use OpState, add CliModuleLoader (#7588) 2020-09-20 01:17:35 +02: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.