turbopack_ecmascript_runtime/
lib.rs1#![feature(arbitrary_self_types)]
2#![feature(arbitrary_self_types_pointers)]
3
4pub(crate) mod asset_context;
5pub(crate) mod browser_runtime;
6pub(crate) mod chunk_suffix;
7#[cfg(feature = "test")]
8pub(crate) mod dummy_runtime;
9pub(crate) mod embed_js;
10pub(crate) mod nodejs_runtime;
11pub(crate) mod runtime_type;
12
13pub use browser_runtime::get_browser_runtime_code;
14pub use chunk_suffix::ChunkSuffix;
15#[cfg(feature = "test")]
16pub use dummy_runtime::get_dummy_runtime_code;
17pub use embed_js::{embed_file, embed_file_path, embed_fs};
18pub use nodejs_runtime::get_nodejs_runtime_code;
19pub use runtime_type::RuntimeType;