@wix/zero-config-implementation 1.60.0 → 1.61.0

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
@@ -729,10 +729,9 @@ function m3(t, e, r, n, i) {
729
729
  N = D, C = D.createElement;
730
730
  try {
731
731
  I = L("react-dom/server").renderToStaticMarkup;
732
- } catch (Y) {
732
+ } catch {
733
733
  throw new Error(
734
- `Component bundle at "${i}" resolves a different React than the host; install "react-dom" alongside "react" so SSR can run against the user's React.`,
735
- { cause: Y }
734
+ `Component bundle at "${i}" resolves a different React than the host; install "react-dom" alongside "react" so SSR can run against the user's React.`
736
735
  );
737
736
  }
738
737
  }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "registry": "https://registry.npmjs.org/",
5
5
  "access": "public"
6
6
  },
7
- "version": "1.60.0",
7
+ "version": "1.61.0",
8
8
  "description": "Core library for extracting component manifests from JS and CSS files",
9
9
  "type": "module",
10
10
  "main": "dist/index.js",
@@ -18,6 +18,7 @@
18
18
  "scripts": {
19
19
  "build": "vite build",
20
20
  "build:dev": "vite build --mode development",
21
+ "typecheck": "tsc --noEmit",
21
22
  "lint": "biome check src/",
22
23
  "test": "vitest run --passWithNoTests",
23
24
  "test:watch": "vitest --passWithNoTests",
@@ -38,7 +39,7 @@
38
39
  }
39
40
  },
40
41
  "dependencies": {
41
- "@wix/react-component-schema": "1.5.0"
42
+ "@wix/react-component-schema": "1.6.0"
42
43
  },
43
44
  "devDependencies": {
44
45
  "@faker-js/faker": "^10.2.0",
@@ -79,5 +80,5 @@
79
80
  ]
80
81
  }
81
82
  },
82
- "falconPackageHash": "773d13f574bda240374a4a8e8347af42c6022e40e7d842e98c15a6cf"
83
+ "falconPackageHash": "274e5da8e4ba5ae90001de1df05e55e4cd4e281605bae183858538b7"
83
84
  }
@@ -207,7 +207,6 @@ export function renderWithExtractors(
207
207
  } catch (cause) {
208
208
  throw new Error(
209
209
  `Component bundle at "${compiledEntryPath}" resolves a different React than the host; install "react-dom" alongside "react" so SSR can run against the user's React.`,
210
- { cause: cause as Error },
211
210
  )
212
211
  }
213
212
  }