Skip to content

Commit

Permalink
chore(deps): update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed May 24, 2024
1 parent 492e979 commit c699184
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 35 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ on:
jobs:
release:
name: Release
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 16
- name: Install dependencies
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ on:
jobs:
build:
name: Build
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 12
- name: Install dependencies
Expand All @@ -22,12 +22,12 @@ jobs:
test:
name: Test
needs: build
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 12
- name: Install dependencies
Expand Down
10 changes: 5 additions & 5 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@
"build": "parcel build index.html"
},
"dependencies": {
"react-app-polyfill": "^1.0.0"
"react-app-polyfill": "^3.0.0"
},
"alias": {
"react": "../node_modules/react",
"react-dom": "../node_modules/react-dom/profiling",
"scheduler/tracing": "../node_modules/scheduler/tracing-profiling"
},
"devDependencies": {
"@types/react": "^16.9.11",
"@types/react-dom": "^16.8.4",
"parcel": "^1.12.3",
"typescript": "^3.4.5"
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"parcel": "^2.0.0",
"typescript": "^5.0.0"
}
}
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
"build-storybook": "build-storybook"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "4.11.1",
"**/@typescript-eslint/parser": "4.11.1",
"**/typescript": "4.2.3"
"**/@typescript-eslint/eslint-plugin": "7.10.0",
"**/@typescript-eslint/parser": "7.10.0",
"**/typescript": "5.4.5"
},
"peerDependencies": {
"react": ">=16"
Expand All @@ -45,23 +45,23 @@
}
},
"devDependencies": {
"@babel/core": "7.13.13",
"@storybook/addon-essentials": "6.4.13",
"@babel/core": "7.24.6",
"@storybook/addon-essentials": "8.1.3",
"@storybook/addon-info": "5.3.21",
"@storybook/addon-links": "6.1.21",
"@storybook/addons": "6.1.21",
"@storybook/react": "6.4.13",
"@testing-library/react-hooks": "5.1.0",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
"husky": "5.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-is": "17.0.2",
"@storybook/addon-links": "8.1.3",
"@storybook/addons": "7.6.17",
"@storybook/react": "8.1.3",
"@testing-library/react-hooks": "8.0.1",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"babel-jest": "29.7.0",
"babel-loader": "9.1.3",
"husky": "9.0.11",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-is": "18.3.1",
"tsdx": "0.14.1",
"tslib": "2.1.0",
"typescript": "4.2.3"
"tslib": "2.6.2",
"typescript": "5.4.5"
}
}

0 comments on commit c699184

Please sign in to comment.