Skip to content

Commit 8f70bf2

Browse files
authored
Merge pull request #51 from tr00st/fixing-dev-dependency-issues
Fixes for local dev / CI builds
2 parents 7dabe13 + 4203cda commit 8f70bf2

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77

88
strategy:
99
matrix:
10-
node-version: [12.x, 14.x, 16.x]
10+
node-version: [14.x, 16.x, 18.x, 20.x, 22.x, 24.x]
1111

1212
steps:
1313
- uses: actions/checkout@v4
@@ -22,7 +22,7 @@ jobs:
2222

2323
- uses: actions/upload-artifact@v4
2424
# Only publish examples using the main branch, and only from one build
25-
if: github.ref == 'refs/heads/main' && matrix.node-version == '16.x'
25+
if: github.ref == 'refs/heads/main' && matrix.node-version == '24.x'
2626
with:
2727
name: examples
2828
path: examples/*

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,18 @@
4040
"homepage": "https://github.com/httptoolkit/react-reverse-portal#readme",
4141
"devDependencies": {
4242
"@babel/core": "^7.5.5",
43-
"@storybook/addon-storysource": "^5.1.11",
44-
"@storybook/addons": "^5.1.11",
45-
"@storybook/react": "^5.1.11",
43+
"@storybook/addon-storysource": "~5.1.11",
44+
"@storybook/addons": "~5.1.11",
45+
"@storybook/react": "~5.1.11",
4646
"@types/events": "^3.0.0",
47+
"@types/node": "^24.6.2",
4748
"@types/react": "^16.9.2",
4849
"@types/react-dom": "^16.9.0",
4950
"babel-loader": "^8.0.6",
5051
"react": "^16.9.0",
5152
"react-dom": "^16.9.0",
5253
"rimraf": "^3.0.0",
53-
"typescript": "^4.9.5"
54+
"typescript": "^5.9.3"
5455
},
5556
"peerDependencies": {
5657
"react": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",

0 commit comments

Comments
 (0)