Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Node.js to v22 #75

Merged
merged 1 commit into from
Dec 4, 2024
Merged
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 frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build main app package
FROM node:20 AS builder
FROM node:22 AS builder
ENV NEXT_TELEMETRY_DISABLED 1
ARG LASIUS_VERSION
LABEL git-commit=$COMMIT_SHORT_SHA
Expand All @@ -16,7 +16,7 @@ RUN rm -rf .git
RUN find . -type f -regextype posix-egrep -regex ".*\.(tsx|ts|tar.gz|md|txt)$" -delete
RUN find . -type f -regextype posix-egrep -regex ".*(LICENSE|license|CHANGELOG)$" -delete

FROM node:20-alpine AS runner
FROM node:22-alpine AS runner
ENV NEXT_TELEMETRY_DISABLED 1
ARG LASIUS_VERSION
LABEL git-commit=$COMMIT_SHORT_SHA
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"@types/js-cookie": "^3.0.6",
"@types/json-stable-stringify": "^1.0.36",
"@types/lodash": "^4.17.7",
"@types/node": "20.16.1",
"@types/node": "22.10.1",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
Expand Down
20 changes: 18 additions & 2 deletions frontend/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3605,7 +3605,7 @@ __metadata:
languageName: node
linkType: hard

"@types/node@npm:*, @types/node@npm:20.16.1":
"@types/node@npm:*":
version: 20.16.1
resolution: "@types/node@npm:20.16.1"
dependencies:
Expand All @@ -3614,6 +3614,15 @@ __metadata:
languageName: node
linkType: hard

"@types/node@npm:22.10.1":
version: 22.10.1
resolution: "@types/node@npm:22.10.1"
dependencies:
undici-types: "npm:~6.20.0"
checksum: 10/c802a526da2f3fa3ccefd00a71244e7cb825329951719e79e8fec62b1dbc2855388c830489770611584665ce10be23c05ed585982038b24924e1ba2c2cce03fd
languageName: node
linkType: hard

"@types/parse-json@npm:^4.0.0":
version: 4.0.2
resolution: "@types/parse-json@npm:4.0.2"
Expand Down Expand Up @@ -8345,7 +8354,7 @@ __metadata:
"@types/js-cookie": "npm:^3.0.6"
"@types/json-stable-stringify": "npm:^1.0.36"
"@types/lodash": "npm:^4.17.7"
"@types/node": "npm:20.16.1"
"@types/node": "npm:22.10.1"
"@types/react": "npm:^18.3.4"
"@types/react-dom": "npm:^18.3.0"
"@typescript-eslint/eslint-plugin": "npm:^8.2.0"
Expand Down Expand Up @@ -11560,6 +11569,13 @@ __metadata:
languageName: node
linkType: hard

"undici-types@npm:~6.20.0":
version: 6.20.0
resolution: "undici-types@npm:6.20.0"
checksum: 10/583ac7bbf4ff69931d3985f4762cde2690bb607844c16a5e2fbb92ed312fe4fa1b365e953032d469fa28ba8b224e88a595f0b10a449332f83fa77c695e567dbe
languageName: node
linkType: hard

"undici@npm:^6.19.5":
version: 6.19.8
resolution: "undici@npm:6.19.8"
Expand Down
Loading