Skip to content

Commit

Permalink
v2.3.0 (#53)
Browse files Browse the repository at this point in the history
* Updated dependencies, updated Github action node versions.

* 2.3.0
  • Loading branch information
aboyce authored Jun 13, 2024
1 parent 4bbd256 commit 83ec5b4
Show file tree
Hide file tree
Showing 4 changed files with 1,637 additions and 1,428 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 19.x, 20.x]
node-version: [18.x, 20.x, 21.x, 22.x]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node.js v${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 22
check-latest: true
- run: yarn
- run: yarn test
Expand All @@ -20,10 +20,10 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 22
check-latest: true
registry-url: https://registry.npmjs.org
- run: yarn
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-css/grid",
"version": "2.2.0",
"version": "2.3.0",
"description": "A thin wrapper to help make CSS Grid simpler and more expressive",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -39,8 +39,9 @@
},
"homepage": "https://github.com/bikk-uk/react-css-grid#readme",
"devDependencies": {
"@snyk/protect": "^1.1177.0",
"@testing-library/react": "^14.0.0",
"@snyk/protect": "^1.1291.1",
"@testing-library/dom": "^10.1.0",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.2",
"@types/react": "^18.2.11",
"@types/react-dom": "^18.2.4",
Expand All @@ -58,7 +59,7 @@
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.0",
"typescript": "^4.7.4"
"typescript": "^5.4.5"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
Expand Down
Loading

0 comments on commit 83ec5b4

Please sign in to comment.