Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: 26
node-version: 24
cache: npm

- name: Install NPM dependencies
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Changed

- Update runtime and development dependencies to compatible current versions.
- Move the minimum supported runtime to Node.js 26.
- Move the supported runtime to Node.js 24.
- Replace Jest, tsx, ESLint, and Prettier with the Node.js test runner, native TypeScript execution, and Biome.
- Update the CI workflow to current GitHub Actions with read-only permissions.
- Replace utility packages with Node.js standard-library and language features.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ The tenants and their configuration be found in [src/data/user/tenants.ts](/src/

### Prerequisites

Install [Node.js](https://nodejs.org/en/) v26 or newer.
Install [Node.js](https://nodejs.org/en/) v24.

### Run the app

Expand Down
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "module",
"private": true,
"engines": {
"node": ">=26.0.0",
"node": "24.x",
"npm": ">=11.0.0"
},
"scripts": {
Expand Down Expand Up @@ -36,8 +36,8 @@
"devDependencies": {
"@biomejs/biome": "^2.5.13",
"@open-resource-discovery/specification": "^1.16.3",
"@tsconfig/node26": "^26.0.1",
"@types/node": "^26.5.1",
"@tsconfig/node24": "^24.0.5",
"@types/node": "^24.13.4",
"openapi-types": "^12.1.3",
"typescript": "^7.0.2"
}
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node26/tsconfig.json",
"extends": "@tsconfig/node24/tsconfig.json",
"compilerOptions": {
"module": "nodenext",
"moduleResolution": "NodeNext",
Expand Down