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

Update the logic for loading sub-scripts in the main script #52

Closed
Closed
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
13 changes: 10 additions & 3 deletions empack/file_packager.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,15 +190,22 @@ def split_pack_environment(
# create the base js file
lines = []
for js_file in js_files:
lines.append(f" promises.push(import('./{js_file}'));")
lines.append(f" promises.push(importPromise('./{js_file}'));")
txt = "\n".join(lines)

if export_name.startswith("globalThis"):
js_import_all_func = f"""export default async function(){{
js_import_all_func = f"""(async function(){{
let promises = [];

const importPromise = function(file) {{
return new Promise((resolve) => {{
importScripts(file);
resolve();
}});
}}
{txt}
await Promise.all(promises);
}}
}})();
"""
else:
js_import_all_func = f"""async function importPackages(){{
Expand Down