Skip to content

Commit

Permalink
Merge pull request #768 from MoralisWeb3/fix/streams-typings
Browse files Browse the repository at this point in the history
fix: streams-typings
  • Loading branch information
sogunshola authored Oct 21, 2022
2 parents 104cb1c + 6701030 commit 3edaf3b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .changeset/grumpy-apes-bathe.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'moralis': patch
'@moralisweb3/streams': patch
---

Move streams-typings from dev dependencies to dependencies in streams package and also correct export name in umbrella package
4 changes: 2 additions & 2 deletions packages/moralis/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"exports": {
".": "./lib/index.js",
"./core": "./lib/core/index.js",
"./stream-typings": "./lib/streamsTypings/index.js",
"./streams-typings": "./lib/streamsTypings/index.js",
"./common-evm-utils": "./lib/commonEvmUtils/index.js",
"./common-sol-utils": "./lib/commonSolUtils/index.js"
},
Expand All @@ -37,7 +37,7 @@
"common-sol-utils": [
"lib/commonSolUtils/index.d.ts"
],
"stream-typings": [
"streams-typings": [
"lib/streamsTypings/index.d.ts"
]
}
Expand Down
2 changes: 1 addition & 1 deletion packages/streams/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
"dev": "tsc --watch"
},
"devDependencies": {
"@moralisweb3/streams-typings": "^1.0.5",
"@moralisweb3/test-utils": "1.0.0",
"@types/ethereumjs-util": "5.2.0",
"eslint-plugin-jest": "^26.8.3",
Expand All @@ -35,6 +34,7 @@
"@moralisweb3/api-utils": "^2.6.6",
"@moralisweb3/core": "^2.6.6",
"@moralisweb3/evm-utils": "^2.6.6",
"@moralisweb3/streams-typings": "^1.0.5",
"ethereumjs-util": "^7.1.0",
"web3-eth-abi": "^1.8.0"
}
Expand Down

1 comment on commit 3edaf3b

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test coverage

Title Lines Statements Branches Functions
api-utils Coverage: 66%
66.56% (219/329) 50.61% (41/81) 68.05% (49/72)
auth Coverage: 97%
97.94% (143/146) 90.9% (20/22) 100% (42/42)
core Coverage: 89%
90.14% (567/629) 75.79% (119/157) 83.72% (108/129)
evm-api Coverage: 82%
80.72% (469/581) 17.57% (58/330) 66.32% (197/297)
evm-utils Coverage: 36%
36.68% (343/935) 39.17% (105/268) 28.26% (91/322)
sol-api Coverage: 75%
76.1% (86/113) 47.36% (9/19) 53.19% (25/47)
sol-utils Coverage: 82%
81.18% (82/101) 66.66% (12/18) 85.71% (30/35)
streams Coverage: 82%
82.72% (383/463) 64% (64/100) 72.72% (96/132)

Please sign in to comment.