feature: bundle all modules (#9324)

This commit is contained in:
Harminder Virk
2024-09-30 12:34:03 +05:30
committed by GitHub
parent a4fc9d6e0b
commit a578313db9
81 changed files with 640 additions and 226 deletions

View File

@@ -1,5 +1,9 @@
export function resolveExports(moduleExports) {
if ("default" in moduleExports && "default" in moduleExports.default) {
if (
"default" in moduleExports &&
moduleExports.default &&
"default" in moduleExports.default
) {
return resolveExports(moduleExports.default)
}
return moduleExports