@asyncswap/jsonrpc 0.4.10 → 0.4.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @asyncswap/jsonrpc
2
2
 
3
+ ## 0.4.11
4
+
5
+ ### Patch Changes
6
+
7
+ - 2f7dece: fixes build
8
+
3
9
  ## 0.4.10
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@asyncswap/jsonrpc",
3
3
  "description": "A minimal jsonrpc spec implementation.",
4
4
  "author": "Meek Msaki",
5
- "version": "0.4.10",
5
+ "version": "0.4.11",
6
6
  "license": "MIT",
7
7
  "main": "dist/index.js",
8
8
  "module": "dist/index.mjs",
package/tsconfig.json CHANGED
@@ -28,6 +28,6 @@
28
28
  "noUnusedParameters": false,
29
29
  "noPropertyAccessFromIndexSignature": false
30
30
  },
31
- "include": ["src/**/*", "global.d.ts"],
31
+ "include": ["src/**/*"],
32
32
  "exclude": ["example.ts"]
33
33
  }