Skip to content

Commit b00ecff

Browse files
committed
Upgrade to React 19
- react/react-dom: 18 → 19 (satisfies neural-activity-visualizer-react peer dep) - plotly.js: 3.x → 2.35.3 (satisfies neural-activity-visualizer-react peer dep) - @mui/material, @mui/icons-material: 5.16 → 5.18 (React 19 support) - @types/react, @types/react-dom: 18 → 19 - @testing-library/react: 16.0 → 16.3.2 (React 19 peer dep support) - Remove --legacy-peer-deps from Dockerfile and .gitlab-ci.yml
1 parent 1771560 commit b00ecff

4 files changed

Lines changed: 1911 additions & 371 deletions

File tree

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ test_app:
66
stage: test
77
script:
88
- cd apps/nar-v3
9-
- npm ci --legacy-peer-deps
9+
- npm ci
1010
- npm run testci # runs all tests whose name does _not_ contain "KG"
1111
tags:
1212
- docker-runner

apps/nar-v3/deployment/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ WORKDIR /app
77
ENV PATH /app/node_modules/.bin:$PATH
88
COPY package.json ./
99
COPY package-lock.json ./
10-
RUN npm ci --silent --legacy-peer-deps
10+
RUN npm ci --silent
1111
COPY . ./
1212
RUN npm run build
1313

0 commit comments

Comments
 (0)