Skip to content
Open
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
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
version: 2.1

orbs:
code-infra: https://raw.githubusercontent.com/mui/mui-public/refs/heads/master/.circleci/orbs/code-infra.yml
# TODO: revert to master before merging
code-infra: https://raw.githubusercontent.com/mui/mui-public/refs/heads/bump-node-to-v24/.circleci/orbs/code-infra.yml

parameters:
workflow:
Expand Down
2 changes: 1 addition & 1 deletion .circleci/orbs/code-infra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ executors:
parameters:
node-version:
type: string
default: '22.21.1'
default: '24.14.0'
docker:
- image: cimg/node:<< parameters.node-version >>
environment:
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/publish-prepare/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ runs:
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
node-version: 22.19.0
node-version: 24.14.0
# https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-dependencies
cache: 'pnpm'
registry-url: 'https://registry.npmjs.org'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: '22.18.0'
node-version: '24.14.0'
cache: 'pnpm' # https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-dependencies
- run: pnpm install
- name: Cache Next.js build
Expand Down
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Always reference these instructions first and fallback to search or bash command

### Bootstrap, Build, and Test the Repository

- **Prerequisites**: Node.js 22.18.0+ required. Install pnpm: `npm install -g pnpm@10.25.0`
- **Prerequisites**: Node.js 24.14.0+ required. Install pnpm: `npm install -g pnpm@10.25.0`
- **Install dependencies**: `pnpm install --no-frozen-lockfile` -- takes 15-20 seconds. **NEVER CANCEL**. Set timeout to 30+ minutes.
- **Build all packages**: `pnpm release:build` -- takes 5-10 seconds. **NEVER CANCEL**. Set timeout to 30+ minutes.
- **Type checking**: `pnpm typescript` -- takes 10-15 seconds. **NEVER CANCEL**. Set timeout to 30+ minutes.
Expand Down
2 changes: 1 addition & 1 deletion apps/code-infra-dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
"devDependencies": {
"@types/etag": "1.8.4",
"@types/node": "22.19.0",
"@types/node": "24.12.0",
"@types/pako": "2.0.4",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
Expand Down
2 changes: 1 addition & 1 deletion apps/tools-public/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"ssh2-promise": "^1.0.3"
},
"devDependencies": {
"@types/node": "22.19.0",
"@types/node": "24.12.0",
"@types/ssh2": "1.15.5"
}
}
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
},
"devDependencies": {
"@next/bundle-analyzer": "16.1.6",
"@types/node": "22.19.0",
"@types/node": "24.12.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@wooorm/starry-night": "3.9.0",
Expand Down
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ publish = "docs/export/"
command = "pnpm docs:lib && pnpm docs:build"

[build.environment]
NODE_VERSION = "22.18"
NODE_VERSION = "24.14"
PNPM_FLAGS = "--frozen-lockfile"

[[plugins]]
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"@next/eslint-plugin-next": "^16.1.6",
"@octokit/rest": "^22.0.1",
"@tsconfig/node24": "^24.0.4",
"@types/node": "^22.18.13",
"@types/node": "^24.12.0",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
Expand All @@ -91,6 +91,6 @@
"packageManager": "pnpm@10.32.1",
"engines": {
"pnpm": "10.32.1",
"node": ">=22.18.0"
"node": ">=24.14.0"
}
}
2 changes: 1 addition & 1 deletion packages/babel-plugin-resolve-imports/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@babel/preset-typescript": "7.28.5",
"@types/babel__core": "7.20.5",
"@types/chai": "5.2.3",
"@types/node": "22.19.0",
"@types/node": "24.12.0",
"@types/resolve": "1.20.6",
"babel-plugin-tester": "12.0.0"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/docs-infra/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
"@types/estree": "1.0.8",
"@types/hast": "3.0.4",
"@types/mdast": "4.0.4",
"@types/node": "22.19.0",
"@types/node": "24.12.0",
"@types/proper-lockfile": "4.1.4",
"@types/react": "19.2.14",
"@types/webpack": "5.28.5",
Expand Down Expand Up @@ -164,6 +164,6 @@
"directory": "build"
},
"engines": {
"node": ">=22.18.0"
"node": ">=24.14.0"
}
}
Loading
Loading