Skip to content

Commit 1f64fa0

Browse files
chore(deps): update all dependencies
1 parent 87e1705 commit 1f64fa0

File tree

5 files changed

+33
-33
lines changed

5 files changed

+33
-33
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212

1313
steps:
1414
- name: Checkout repo
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616

1717
- name: Use Node ${{ matrix.node }}
18-
uses: actions/setup-node@v1
18+
uses: actions/setup-node@v4
1919
with:
2020
node-version: ${{ matrix.node }}
2121

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Checkout
2020
uses: actions/checkout@v4
2121
- name: Setup Node.js
22-
uses: actions/setup-node@v3
22+
uses: actions/setup-node@v4
2323
with:
2424
node-version: "lts/*"
2525
- name: Install dependencies

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ on:
77
jobs:
88
build:
99
name: Build
10-
runs-on: ubuntu-18.04
10+
runs-on: ubuntu-22.04
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v4
1414
- name: Setup Node.js
15-
uses: actions/setup-node@v1
15+
uses: actions/setup-node@v4
1616
with:
1717
node-version: 12
1818
- name: Install dependencies
@@ -22,12 +22,12 @@ jobs:
2222
test:
2323
name: Test
2424
needs: build
25-
runs-on: ubuntu-18.04
25+
runs-on: ubuntu-22.04
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v1
28+
uses: actions/checkout@v4
2929
- name: Setup Node.js
30-
uses: actions/setup-node@v1
30+
uses: actions/setup-node@v4
3131
with:
3232
node-version: 12
3333
- name: Install dependencies

example/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@
88
"build": "parcel build index.html"
99
},
1010
"dependencies": {
11-
"react-app-polyfill": "^1.0.0"
11+
"react-app-polyfill": "^3.0.0"
1212
},
1313
"alias": {
1414
"react": "../node_modules/react",
1515
"react-dom": "../node_modules/react-dom/profiling",
1616
"scheduler/tracing": "../node_modules/scheduler/tracing-profiling"
1717
},
1818
"devDependencies": {
19-
"@types/react": "^16.9.11",
20-
"@types/react-dom": "^16.8.4",
21-
"parcel": "^1.12.3",
22-
"typescript": "^3.4.5"
19+
"@types/react": "^18.0.0",
20+
"@types/react-dom": "^18.0.0",
21+
"parcel": "^2.0.0",
22+
"typescript": "^5.0.0"
2323
}
2424
}

package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
"build-storybook": "build-storybook"
3333
},
3434
"resolutions": {
35-
"**/@typescript-eslint/eslint-plugin": "4.11.1",
36-
"**/@typescript-eslint/parser": "4.11.1",
37-
"**/typescript": "4.2.3"
35+
"**/@typescript-eslint/eslint-plugin": "8.4.0",
36+
"**/@typescript-eslint/parser": "8.4.0",
37+
"**/typescript": "5.5.4"
3838
},
3939
"peerDependencies": {
4040
"react": ">=16"
@@ -45,23 +45,23 @@
4545
}
4646
},
4747
"devDependencies": {
48-
"@babel/core": "7.13.13",
49-
"@storybook/addon-essentials": "6.4.13",
48+
"@babel/core": "7.25.2",
49+
"@storybook/addon-essentials": "8.2.9",
5050
"@storybook/addon-info": "5.3.21",
51-
"@storybook/addon-links": "6.1.21",
52-
"@storybook/addons": "6.1.21",
53-
"@storybook/react": "6.4.13",
54-
"@testing-library/react-hooks": "5.1.0",
55-
"@types/react": "17.0.3",
56-
"@types/react-dom": "17.0.3",
57-
"babel-jest": "26.6.3",
58-
"babel-loader": "8.2.2",
59-
"husky": "5.2.0",
60-
"react": "17.0.2",
61-
"react-dom": "17.0.2",
62-
"react-is": "17.0.2",
51+
"@storybook/addon-links": "8.2.9",
52+
"@storybook/addons": "7.6.17",
53+
"@storybook/react": "8.2.9",
54+
"@testing-library/react-hooks": "8.0.1",
55+
"@types/react": "18.3.5",
56+
"@types/react-dom": "18.3.0",
57+
"babel-jest": "29.7.0",
58+
"babel-loader": "9.1.3",
59+
"husky": "9.1.5",
60+
"react": "18.3.1",
61+
"react-dom": "18.3.1",
62+
"react-is": "18.3.1",
6363
"tsdx": "0.14.1",
64-
"tslib": "2.1.0",
65-
"typescript": "4.2.3"
64+
"tslib": "2.7.0",
65+
"typescript": "5.5.4"
6666
}
6767
}

0 commit comments

Comments
 (0)