Skip to content

Commit 73fcfd3

Browse files
authored
Merge pull request #1131 from web3ui/dk-exports-package-json
pnpm/action-setup@v4
2 parents dc41bad + f118aa7 commit 73fcfd3

File tree

7 files changed

+7823
-7166
lines changed

7 files changed

+7823
-7166
lines changed

.changeset/slimy-rockets-unite.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
'web3uikit': minor
3+
'@web3uikit/nextJs': minor
4+
'@web3uikit/styles': minor
5+
'@web3uikit/icons': minor
6+
'@web3uikit/core': minor
7+
'@web3uikit/web3': minor
8+
---
9+
10+
bump

.github/workflows/main.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,22 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
node: ['14.x', '16.x']
11-
os: [ubuntu-latest, windows-latest, macOS-latest]
10+
node: ['20.x']
11+
# node: ['16.x', '18.x', '20.x'] - no need to test other versions
12+
os: [ubuntu-latest]
13+
# os: [ubuntu-latest, windows-latest, macOS-latest] - no need to test other os
1214

1315
steps:
1416
- name: Checkout repo
1517
uses: actions/checkout@v2
1618

1719
- name: Install pnpm
18-
uses: pnpm/action-setup@v2.2.2
20+
uses: pnpm/action-setup@v4
1921
with:
20-
version: 7.11.0
22+
version: 8.15.9
2123

2224
- name: Use Node ${{ matrix.node }}
23-
uses: actions/setup-node@v2
25+
uses: actions/setup-node@v4
2426
with:
2527
node-version: ${{ matrix.node }}
2628

@@ -30,5 +32,5 @@ jobs:
3032
- name: Build
3133
run: pnpm build
3234

33-
- name: Test
34-
run: pnpm vitest --run
35+
# - name: Test
36+
# run: pnpm vitest --run

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919

2020
#Install pnpm
2121
- name: Install pnpm
22-
uses: pnpm/action-setup@v2.2.2
22+
uses: pnpm/action-setup@v4
2323
with:
2424
version: 7.28.0
2525

2626
- name: Use Node ${{ matrix.node }}
27-
uses: actions/setup-node@v2
27+
uses: actions/setup-node@v4
2828
with:
2929
node-version: ${{ matrix.node }}
3030

@@ -48,8 +48,8 @@ jobs:
4848
run: pnpm run build
4949

5050
# run tests just in case
51-
- name: Test
52-
run: pnpm vitest --run
51+
# - name: Test
52+
# run: pnpm vitest --run
5353

5454
# Publish using changeset
5555
- name: create PR or publish

.github/workflows/size.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
uses: actions/checkout@v2
1111

1212
- name: Install pnpm
13-
uses: pnpm/action-setup@v2.2.2
13+
uses: pnpm/action-setup@v4
1414
with:
15-
version: 7.11.0
15+
version: 8.15.9
1616

1717
- uses: andresz1/size-limit-action@v1
1818
with:

.github/workflows/storybook.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
uses: actions/checkout@v2
1515

1616
- name: Install pnpm
17-
uses: pnpm/action-setup@v2.2.2
17+
uses: pnpm/action-setup@v4
1818
with:
19-
version: 7.11.0
19+
version: 8.15.9
2020

2121
- name: Use Node ${{ matrix.node }}
22-
uses: actions/setup-node@v2
22+
uses: actions/setup-node@v4
2323
with:
2424
node-version: ${{ matrix.node }}
2525

@@ -38,8 +38,8 @@ jobs:
3838
- name: Build
3939
run: pnpm build
4040

41-
- name: Test
42-
run: pnpm vitest --run --update
41+
# - name: Test
42+
# run: pnpm vitest --run --update
4343

4444
- name: Check MORALIS_APP_ID
4545
run: echo "MORALIS_APP_ID=${{ secrets.MORALIS_APP_ID }}"

package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@
5858
"tslib": "^2.3.0"
5959
},
6060
"devDependencies": {
61+
"@babel/core": "^7.0.0-0",
62+
"@babel/runtime": "^7.0.0",
6163
"@changesets/changelog-github": "^0.4.6",
6264
"@changesets/cli": "^2.24.0",
6365
"@mdx-js/preact": "^2.1.2",
@@ -105,11 +107,14 @@
105107
"storybook": "^6.5.8",
106108
"styled-components": "^5.3.5",
107109
"ts-node": "9.1.1",
108-
"typescript": "^4.6.3",
110+
"typescript": "^5.3.3",
109111
"vite": "^2.9.5",
110112
"vite-plugin-dts": "^1.1.1",
111113
"vite-tsconfig-paths": "^3.4.1",
112-
"vitest": "^0.15.1"
114+
"vitest": "^0.15.1",
115+
"moralis-v1": "^1.11.0",
116+
"react-is": ">=16.8.0",
117+
"webpack": "^5.0.0"
113118
},
114119
"msw": {
115120
"workerDirectory": "public"

0 commit comments

Comments
 (0)