fix(@angular/cli): remove Node.js 16 from supported checks

Node.js support was removed, but it appears that this got through the cracks.
This commit is contained in:
Alan Agius 2023-10-24 10:46:57 +00:00 committed by Alan Agius
parent 6067f8577d
commit 842c2045d1

View File

@ -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\/.*/,