Browse Source

Upgrade Node.js to version 24

pull/7609/head
Thomas Kaul 3 weeks ago
parent
commit
0a506aeaae
  1. 2
      .github/workflows/build-code.yml
  2. 2
      .nvmrc
  3. 2
      DEVELOPMENT.md
  4. 4
      Dockerfile
  5. 18
      package-lock.json
  6. 4
      package.json
  7. 2
      tsconfig.base.json

2
.github/workflows/build-code.yml

@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
node_version:
- 22.22.1
- 24.19.0
steps:
- name: Checkout code
uses: actions/checkout@v4

2
.nvmrc

@ -1 +1 @@
v22
v24

2
DEVELOPMENT.md

@ -5,7 +5,7 @@
### Prerequisites
- [Docker](https://www.docker.com/products/docker-desktop)
- [Node.js](https://nodejs.org/en/download) (version `>=22.18.0`)
- [Node.js](https://nodejs.org/en/download) (version `>=24.19.0`)
- Create a local copy of this Git repository (clone)
- Copy the file `.env.dev` to `.env` and populate it with your data (`cp .env.dev .env`)

4
Dockerfile

@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM node:22-slim AS builder
FROM --platform=$BUILDPLATFORM node:24-slim AS builder
# Build application and add additional files
WORKDIR /ghostfolio
@ -49,7 +49,7 @@ COPY package.json /ghostfolio/dist/apps/api/
RUN npm run database:generate-typings
# Image to run, copy everything needed from builder
FROM node:22-slim
FROM node:24-slim
LABEL org.opencontainers.image.source="https://github.com/ghostfolio/ghostfolio"
ENV NODE_ENV=production

18
package-lock.json

@ -141,7 +141,7 @@
"@types/jest": "30.0.0",
"@types/jsonpath": "0.2.4",
"@types/lodash": "4.17.24",
"@types/node": "22.15.17",
"@types/node": "24.13.3",
"@types/papaparse": "5.5.2",
"@types/passport-google-oauth20": "2.0.17",
"@types/passport-openidconnect": "0.1.3",
@ -171,7 +171,7 @@
"webpack-cli": "7.1.0"
},
"engines": {
"node": ">=22.18.0"
"node": ">=24.19.0"
}
},
"node_modules/@adobe/css-tools": {
@ -12257,12 +12257,12 @@
"license": "MIT"
},
"node_modules/@types/node": {
"version": "22.15.17",
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.17.tgz",
"integrity": "sha512-wIX2aSZL5FE+MR0JlvF87BNVrtFWf6AE6rxSE9X7OwnVvoyCQjpzSRJ+M87se/4QCkCiebQAqrJ0y6fwIyi7nw==",
"version": "24.13.3",
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.13.3.tgz",
"integrity": "sha512-Dh8vAsV36ig5wa9OX4pXvMc9D3Veibfw2wix0CUwYODLD8nkj9UsLjASr49nPg+2eKzxhBV+v7L8pXvT4e639Q==",
"license": "MIT",
"dependencies": {
"undici-types": "~6.21.0"
"undici-types": "~7.18.0"
}
},
"node_modules/@types/oauth": {
@ -32871,9 +32871,9 @@
}
},
"node_modules/undici-types": {
"version": "6.21.0",
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
"version": "7.18.2",
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz",
"integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==",
"license": "MIT"
},
"node_modules/unicode-canonical-property-names-ecmascript": {

4
package.json

@ -185,7 +185,7 @@
"@types/jest": "30.0.0",
"@types/jsonpath": "0.2.4",
"@types/lodash": "4.17.24",
"@types/node": "22.15.17",
"@types/node": "24.13.3",
"@types/papaparse": "5.5.2",
"@types/passport-google-oauth20": "2.0.17",
"@types/passport-openidconnect": "0.1.3",
@ -215,6 +215,6 @@
"webpack-cli": "7.1.0"
},
"engines": {
"node": ">=22.18.0"
"node": ">=24.19.0"
}
}

2
tsconfig.base.json

@ -12,7 +12,7 @@
"target": "es2015",
"module": "esnext",
"typeRoots": ["node_modules/@types"],
"lib": ["es2017", "dom"],
"lib": ["dom", "es2022"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",

Loading…
Cancel
Save