Skip to content

Commit 1f7156b

Browse files
committed
fix(@angular/cli): add Node.js 20 as supported version
Prior to this Node.js 20 was incorrectly being listed as unsupported. Closes #26114 (cherry picked from commit 91dcae1)
1 parent 3dfd1be commit 1f7156b

File tree

1 file changed

+1
-1
lines changed
  • packages/angular/cli/src/commands/version

1 file changed

+1
-1
lines changed

packages/angular/cli/src/commands/version/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ interface PartialPackageInfo {
2323
/**
2424
* Major versions of Node.js that are officially supported by Angular.
2525
*/
26-
const SUPPORTED_NODE_MAJORS = [18];
26+
const SUPPORTED_NODE_MAJORS = [18, 20];
2727

2828
const PACKAGE_PATTERNS = [
2929
/^@angular\/.*/,

0 commit comments

Comments
 (0)