Skip to content

Commit

Permalink
fix(@angular/cli): add Node.js 20 as supported version
Browse files Browse the repository at this point in the history
Prior to this Node.js 20 was incorrectly being listed as unsupported.

Closes #26114

(cherry picked from commit 91dcae1)
  • Loading branch information
alan-agius4 committed Oct 30, 2023
1 parent 3dfd1be commit 1f7156b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/angular/cli/src/commands/version/cli.ts
Expand Up @@ -23,7 +23,7 @@ interface PartialPackageInfo {
/**
* Major versions of Node.js that are officially supported by Angular.
*/
const SUPPORTED_NODE_MAJORS = [18];
const SUPPORTED_NODE_MAJORS = [18, 20];

const PACKAGE_PATTERNS = [
/^@angular\/.*/,
Expand Down

0 comments on commit 1f7156b

Please sign in to comment.