Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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@v6

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

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v6
with:
node-version: "lts/*"
- name: Install dependencies
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,29 +7,29 @@ on:
jobs:
build:
name: Build
runs-on: ubuntu-18.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v6
with:
node-version: 12
node-version: 24
- name: Install dependencies
run: npm ci
- name: Build package
run: npm run build
test:
name: Test
needs: build
runs-on: ubuntu-18.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v6
with:
node-version: 12
node-version: 24
- name: Install dependencies
run: npm ci
- name: Run tests
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": "^19.0.0",
"@types/react-dom": "^19.0.0",
"parcel": "^2.0.0",
"typescript": "^5.0.0"
}
}
40 changes: 20 additions & 20 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": "8.55.0",
"**/@typescript-eslint/parser": "8.55.0",
"**/typescript": "5.9.3"
},
"peerDependencies": {
"react": ">=16"
Expand All @@ -45,23 +45,23 @@
}
},
"devDependencies": {
"@babel/core": "7.13.13",
"@storybook/addon-essentials": "6.4.13",
"@babel/core": "7.29.0",
"@storybook/addon-essentials": "8.6.14",
"@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",
"tsdx": "0.14.1",
"tslib": "2.1.0",
"typescript": "4.2.3"
"@storybook/addon-links": "10.2.8",
"@storybook/addons": "7.6.17",
"@storybook/react": "10.2.8",
"@testing-library/react-hooks": "8.0.1",
"@types/react": "19.2.13",
"@types/react-dom": "19.2.3",
"babel-jest": "30.2.0",
"babel-loader": "10.0.0",
"husky": "9.1.7",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-is": "19.2.4",
"tsdx": "2.0.0",
"tslib": "2.8.1",
"typescript": "5.9.3"
}
}
Loading