We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e29c6a2 commit ed92841Copy full SHA for ed92841
constants.bzl
@@ -1,5 +1,5 @@
1
# Engine versions to stamp in a release package.json
2
-RELEASE_ENGINES_NODE = "^20.11.1 || >=22.11.0"
+RELEASE_ENGINES_NODE = "^20.11.1 || ^22.11.0 || >=24.0.0"
3
RELEASE_ENGINES_NPM = "^6.11.0 || ^7.5.6 || >=8.0.0"
4
RELEASE_ENGINES_YARN = ">= 1.13.0"
5
packages/angular/cli/src/commands/version/cli.ts
@@ -23,7 +23,7 @@ interface PartialPackageInfo {
23
/**
24
* Major versions of Node.js that are officially supported by Angular.
25
*/
26
-const SUPPORTED_NODE_MAJORS = [20, 22];
+const SUPPORTED_NODE_MAJORS = [20, 22, 24];
27
28
const PACKAGE_PATTERNS = [
29
/^@angular\/.*/,
0 commit comments