Skip to content

Commit 1f155ad

Browse files
committed
chore: remove debug print statements
1 parent aee39f0 commit 1f155ad

File tree

1 file changed

+0
-11
lines changed
  • crates/mako/src/plugins/require_context

1 file changed

+0
-11
lines changed

crates/mako/src/plugins/require_context/render.rs

-11
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,6 @@ impl ContextLoadMode {
2525
let mut map_str = String::from(r#"var _map_lazy = {"#);
2626
map.iter().for_each(|(key, value)| match self {
2727
ContextLoadMode::Sync => {
28-
println!(
29-
"... render_module_import1: {} -> {}",
30-
win_path(key),
31-
win_path(value)
32-
);
3328
map_str.push_str(&format!(
3429
r#"
3530
"{}": ()=> require("{}"),"#,
@@ -39,11 +34,6 @@ impl ContextLoadMode {
3934
}
4035

4136
ContextLoadMode::Lazy => {
42-
println!(
43-
"... render_module_import2: {} -> {}",
44-
win_path(key),
45-
win_path(value)
46-
);
4737
map_str.push_str(&format!(
4838
r#"
4939
"{}": ()=> import("{}"),"#,
@@ -160,7 +150,6 @@ impl VirtualContextModuleRender {
160150
pub fn module_id_map(&self, map: &BTreeMap<String, String>, context: &Arc<Context>) -> String {
161151
let mut map_str = String::from(r#"var _map = {"#);
162152
for (key, value) in map.iter() {
163-
println!("... replace key: {} -> {}", key, win_path(key));
164153
map_str.push_str(&format!(
165154
r#"
166155
"{}": "{}","#,

0 commit comments

Comments
 (0)