Skip to content

Commit e7421b8

Browse files
hip3rmartinjagodic
andauthored
react 19 (#7463)
* feat: react 19 mwp wip * feat: react 19 mwp - todo proptypes * fix: revert test conig.yml * fix: revert test conig.yml 2 * feat: //issues/7365 react 19 support finalize * fix: lint * fix: revert nx to working version for linux * chore: raise all react peer deps versions * chore: update package-lock and add ajv to dev deps * chore: update CI node version * fix: stega compilation problem * chore: add packing bash script * chore: change babel typescript preset * chore: compile package-lock * fix: tests * chore: update lockfile --------- Co-authored-by: Martin Jagodic <jagodicmartin1@gmail.com>
1 parent 94f14d2 commit e7421b8

File tree

87 files changed

+1839
-905
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+1839
-905
lines changed

.github/workflows/nodejs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
os: [macos-latest, windows-latest, ubuntu-latest]
28-
node-version: [18.x, 20.x]
28+
node-version: [20.x, 22.x]
2929
fail-fast: true
3030
if: ${{ needs.changes.outputs.cms == 'true' }}
3131
steps:
@@ -45,15 +45,15 @@ jobs:
4545
- name: build demo site
4646
run: npm run build:demo
4747
- name: run e2e tests
48-
if: matrix.os == 'ubuntu-latest' && matrix.node-version == '20.x'
48+
if: matrix.os == 'ubuntu-latest' && matrix.node-version == '22.x'
4949
run: npm run test:e2e:run-ci
5050
env:
5151
IS_FORK: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == true || github.repository_owner != 'decaporg' }}
5252
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
5353
NODE_OPTIONS: --max-old-space-size=4096
5454
TZ: Europe/Amsterdam
5555
- uses: actions/upload-artifact@v4
56-
if: matrix.os == 'ubuntu-latest' && matrix.node-version == '20.x' && failure()
56+
if: matrix.os == 'ubuntu-latest' && matrix.node-version == '22.x' && failure()
5757
with:
5858
name: cypress-results
5959
path: |

babel.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function presets() {
5656
autoLabel: 'always',
5757
},
5858
],
59-
'@babel/typescript',
59+
'@babel/preset-typescript',
6060
];
6161
}
6262

0 commit comments

Comments
 (0)