@zoralabs/protocol-sdk 0.5.4 → 0.5.5

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.
@@ -10,7 +10,7 @@ $ tsup
10
10
  ESM Build start
11
11
  CJS dist/index.cjs 50.17 KB
12
12
  CJS dist/index.cjs.map 97.10 KB
13
- CJS ⚡️ Build success in 67ms
13
+ CJS ⚡️ Build success in 113ms
14
14
  ESM dist/index.js 46.25 KB
15
15
  ESM dist/index.js.map 97.16 KB
16
- ESM ⚡️ Build success in 74ms
16
+ ESM ⚡️ Build success in 115ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @zoralabs/protocol-sdk
2
2
 
3
+ ## 0.5.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 8a87809: Undo changes to package export because it didn't properly bundle all files in `dist`
8
+
3
9
  ## 0.5.4
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,18 +1,10 @@
1
1
  {
2
2
  "name": "@zoralabs/protocol-sdk",
3
- "version": "0.5.4",
3
+ "version": "0.5.5",
4
4
  "repository": "https://github.com/ourzora/zora-protocol",
5
5
  "license": "MIT",
6
- "main": "./dist/index.cjs",
7
- "module": "./dist/index.js",
6
+ "main": "./dist/index.js",
8
7
  "types": "./dist/index.d.ts",
9
- "exports": {
10
- ".": {
11
- "types": "./dist/index.d.ts",
12
- "import": "./dist/index.js",
13
- "default": "./dist/index.cjs"
14
- }
15
- },
16
8
  "type": "module",
17
9
  "scripts": {
18
10
  "build": "tsup",