@dynamic-labs-wallet/forward-mpc-client 0.8.0 → 0.8.2

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.
package/dist/index.js CHANGED
@@ -48,8 +48,16 @@ var NitroAttestationVerifier = class {
48
48
  */
49
49
  async initWasm() {
50
50
  if (typeof process !== "undefined" && process.versions?.node) {
51
- const { readFileSync } = await import('fs');
52
- const { createRequire } = await import('module');
51
+ const fsModule = "node:fs";
52
+ const moduleModule = "node:module";
53
+ const { readFileSync } = await import(
54
+ /* @vite-ignore */
55
+ fsModule
56
+ );
57
+ const { createRequire } = await import(
58
+ /* @vite-ignore */
59
+ moduleModule
60
+ );
53
61
  const require2 = createRequire(import.meta.url);
54
62
  const wasmPath = require2.resolve("@evervault/wasm-attestation-bindings/index_bg.wasm");
55
63
  const { initSync } = await import('@evervault/wasm-attestation-bindings');