zksync-sso 1.0.0-beta.1 → 1.0.0-beta.3

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "zksync-sso",
3
3
  "description": "ZKsync Smart Sign On SDK",
4
- "version": "1.0.0-beta.1",
4
+ "version": "1.0.0-beta.3",
5
5
  "license": "MIT",
6
6
  "author": "Matter Labs",
7
7
  "repository": {
@@ -150,6 +150,6 @@
150
150
  "bigint-conversion": "^2.4.3",
151
151
  "buffer": "^6.0.3",
152
152
  "ms": "^2.1.3",
153
- "zksync-sso-web-sdk": "workspace:*"
153
+ "zksync-sso-web-sdk": "1.0.0-beta.3"
154
154
  }
155
155
  }
@@ -25,6 +25,11 @@ async function preparePackageJson() {
25
25
  // Set the package name for publishing
26
26
  packageJson.name = "zksync-sso";
27
27
 
28
+ // Replace workspace dependency with the published version
29
+ if (packageJson.dependencies?.["zksync-sso-web-sdk"]) {
30
+ packageJson.dependencies["zksync-sso-web-sdk"] = version;
31
+ }
32
+
28
33
  // Write the updated package.json back to the file
29
34
  await fs.writeFile(packageJsonPath, JSON.stringify(packageJson, null, 2));
30
35