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 dev_runtime to browser_runtime #8396

Merged
merged 1 commit into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions crates/turbopack-ecmascript-runtime/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#![feature(arbitrary_self_types)]

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

pub use browser_runtime::get_browser_runtime_code;
pub use build_runtime::get_nodejs_runtime_code;
pub use dev_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};
Expand Down
Loading