Skip to content

Commit e169c53

Browse files
committed
Bump Node support in rush-lib and rush init.
1 parent 91388ed commit e169c53

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"changes": [
3+
{
4+
"packageName": "@microsoft/rush",
5+
"comment": "Add support for Node 24 and bump the `rush init` template to default to Node 24.",
6+
"type": "none"
7+
}
8+
],
9+
"packageName": "@microsoft/rush"
10+
}

libraries/rush-lib/assets/rush-init/rush.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* LTS schedule: https://nodejs.org/en/about/releases/
4343
* LTS versions: https://nodejs.org/en/download/releases/
4444
*/
45-
"nodeSupportedVersionRange": ">=22.20.0 <23.0.0",
45+
"nodeSupportedVersionRange": ">=24.11.1 <25.0.0",
4646

4747
/**
4848
* If the version check above fails, Rush will display a message showing the current

libraries/rush-lib/src/logic/NodeJsCompatibility.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { RushConstants } from './RushConstants';
1717
* LTS schedule: https://nodejs.org/en/about/releases/
1818
* LTS versions: https://nodejs.org/en/download/releases/
1919
*/
20-
const UPCOMING_NODE_LTS_VERSION: number = 22;
20+
const UPCOMING_NODE_LTS_VERSION: number = 24;
2121
const nodeVersion: string = process.versions.node;
2222
const nodeMajorVersion: number = semver.major(nodeVersion);
2323

0 commit comments

Comments
 (0)