Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename runtime files to match functions #8215

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions crates/turbopack-ecmascript-runtime/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
#![feature(arbitrary_self_types)]

pub(crate) mod asset_context;
pub(crate) mod build_runtime;
pub(crate) mod dev_runtime;
pub(crate) mod browser_runtime;
#[cfg(feature = "test")]
pub(crate) mod dummy_runtime;
pub(crate) mod embed_js;
pub(crate) mod nodejs_runtime;
pub(crate) mod runtime_type;

pub use build_runtime::get_nodejs_runtime_code;
pub use dev_runtime::get_browser_runtime_code;
pub use browser_runtime::get_browser_runtime_code;
#[cfg(feature = "test")]
pub use dummy_runtime::get_dummy_runtime_code;
pub use embed_js::{embed_file, embed_file_path, embed_fs};
pub use nodejs_runtime::get_nodejs_runtime_code;
pub use runtime_type::RuntimeType;

pub fn register() {
Expand Down
Loading