Skip to content

Commit

Permalink
Rename dev_runtime to browser_runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
timneutkens committed Jun 10, 2024
1 parent eccccae commit 2967568
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 2967568

Please sign in to comment.