Skip to content

Commit 5dd4ff1

Browse files
authored
feat: Update dependencies and size limitThe commit updates dependenci… (#2695)
1 parent 97556c4 commit 5dd4ff1

File tree

4 files changed

+268
-18
lines changed

4 files changed

+268
-18
lines changed

.github/workflows/CI.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,3 +108,23 @@ jobs:
108108
with:
109109
token: ${{ secrets.CODSPEED_TOKEN }}
110110
run: "pnpm bench"
111+
112+
size:
113+
# only run on pull requests
114+
if: github.event_name == 'pull_request'
115+
timeout-minutes: 15
116+
name: "Size"
117+
runs-on: ubuntu-latest-16
118+
steps:
119+
- name: Check out the code
120+
uses: actions/checkout@v4
121+
122+
- name: Setup & Install
123+
uses: ./.github/composite-actions/install
124+
125+
- name: Report bundle size
126+
uses: andresz1/size-limit-action@master
127+
with:
128+
github_token: ${{ secrets.GITHUB_TOKEN }}
129+
package_manager: pnpm
130+
directory: packages/thirdweb

packages/thirdweb/.size-limit.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
"name": "thirdweb (esm)",
44
"path": "./dist/esm/exports/thirdweb.js",
5-
"limit": "30 kB",
5+
"limit": "40 kB",
66
"import": "*"
77
},
88
{

packages/thirdweb/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,15 +184,15 @@
184184
"@radix-ui/react-focus-scope": "1.0.4",
185185
"@radix-ui/react-icons": "1.3.0",
186186
"@radix-ui/react-tooltip": "1.0.7",
187-
"@tanstack/react-query": "5.28.9",
188-
"@walletconnect/ethereum-provider": "2.11.3",
187+
"@tanstack/react-query": "5.28.14",
188+
"@walletconnect/ethereum-provider": "2.12.0",
189189
"abitype": "1.0.0",
190190
"fast-text-encoding": "^1.0.6",
191191
"fuse.js": "7.0.0",
192192
"mipd": "0.0.7",
193193
"node-libs-browser": "2.2.1",
194194
"uqr": "0.1.2",
195-
"viem": "2.9.6"
195+
"viem": "2.9.9"
196196
},
197197
"peerDependencies": {
198198
"ethers": "^5 || ^6",

0 commit comments

Comments
 (0)