mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
c1c8eb3d55
Closes #19399 (running without snapshots at all was suggested as an alternative solution). Adds a `__runtime_js_sources` pseudo-private feature to load extension JS sources at runtime for faster development, instead of building and loading snapshots or embedding sources in the binary. Will only work in a development environment obviously. Try running `cargo test --features __runtime_js_sources integration::node_unit_tests::os_test`. Then break some behaviour in `ext/node/polyfills/os.ts` e.g. make `function cpus() {}` return an empty array, and run it again. Fix and then run again. No more build time in between.
39 lines
810 B
Rust
39 lines
810 B
Rust
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
pub use deno_broadcast_channel;
|
|
pub use deno_cache;
|
|
pub use deno_console;
|
|
pub use deno_core;
|
|
pub use deno_crypto;
|
|
pub use deno_fetch;
|
|
pub use deno_ffi;
|
|
pub use deno_fs;
|
|
pub use deno_http;
|
|
pub use deno_io;
|
|
pub use deno_kv;
|
|
pub use deno_napi;
|
|
pub use deno_net;
|
|
pub use deno_node;
|
|
pub use deno_tls;
|
|
pub use deno_url;
|
|
pub use deno_web;
|
|
pub use deno_webidl;
|
|
pub use deno_websocket;
|
|
pub use deno_webstorage;
|
|
|
|
pub mod colors;
|
|
pub mod errors;
|
|
pub mod fmt_errors;
|
|
pub mod fs_util;
|
|
pub mod inspector_server;
|
|
pub mod js;
|
|
pub mod ops;
|
|
pub mod permissions;
|
|
pub mod tokio_util;
|
|
pub mod web_worker;
|
|
pub mod worker;
|
|
|
|
mod worker_bootstrap;
|
|
pub use worker::runtime;
|
|
pub use worker_bootstrap::BootstrapOptions;
|
|
pub use worker_bootstrap::WorkerLogLevel;
|