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

Export initSync for no-module builds #3075

Merged
merged 1 commit into from Sep 9, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion crates/cli-support/src/js/mod.rs
Expand Up @@ -380,7 +380,10 @@ impl<'a> Context<'a> {
js.push_str("const __exports = {};\n");
js.push_str("let wasm;\n");
init = self.gen_init(needs_manual_start, None)?;
footer.push_str(&format!("{} = Object.assign(init, __exports);\n", global));
footer.push_str(&format!(
"{} = Object.assign(init, {{ initSync }}, __exports);\n",
global
));
}

// With normal CommonJS node we need to defer requiring the wasm
Expand Down