@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.
@@ -630,7 +630,10 @@ function isBrowser() {
630
630
  return typeof window !== "undefined" && typeof window.document !== "undefined";
631
631
  }
632
632
  async function dynamicImport(specifier) {
633
- return import(specifier);
633
+ return import(
634
+ /* webpackIgnore: true */
635
+ specifier
636
+ );
634
637
  }
635
638
  async function canUseNativeWdk() {
636
639
  if (isBrowser()) {