@zubari/sdk 0.5.10 → 0.5.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -575,7 +575,10 @@ function isBrowser() {
575
575
  return typeof window !== "undefined" && typeof window.document !== "undefined";
576
576
  }
577
577
  async function dynamicImport(specifier) {
578
- return import(specifier);
578
+ return import(
579
+ /* webpackIgnore: true */
580
+ specifier
581
+ );
579
582
  }
580
583
  async function canUseNativeWdk() {
581
584
  if (isBrowser()) {