Skip to content

Commit

Permalink
fix(@angular/cli): remove Node.js 16 from supported checks
Browse files Browse the repository at this point in the history
Node.js support was removed, but it appears that this got through the cracks.
  • Loading branch information
alan-agius4 committed Oct 24, 2023
1 parent 65a2660 commit 8fa4ebb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/angular/cli/src/commands/version/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ interface PartialPackageInfo {
/**
* Major versions of Node.js that are officially supported by Angular.
*/
const SUPPORTED_NODE_MAJORS = [16, 18];
const SUPPORTED_NODE_MAJORS = [18];

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

0 comments on commit 8fa4ebb

Please sign in to comment.