File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ function loadPackageJson(p: string) {
85
85
// Overwrite engines to a common default.
86
86
case 'engines' :
87
87
pkg [ 'engines' ] = {
88
- 'node' : '^12.14.1 || >=14.0.0' ,
88
+ 'node' : '^12.20.0 || >=14.0.0' ,
89
89
'npm' : '^6.11.0 || ^7.5.6' ,
90
90
'yarn' : '>= 1.13.0' ,
91
91
} ;
Original file line number Diff line number Diff line change 40
40
"url" : " https://github.com/angular/angular-cli.git"
41
41
},
42
42
"engines" : {
43
- "node" : " ^12.14.1 || ^14.0.0" ,
43
+ "node" : " ^12.20.0 || ^14.0.0" ,
44
44
"yarn" : " >=1.21.1 <2" ,
45
45
"npm" : " Please use yarn instead of NPM to install dependencies"
46
46
},
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ if (version[0] % 2 === 1 && version[0] > 14) {
29
29
} else if (
30
30
version [ 0 ] < 12 ||
31
31
version [ 0 ] === 13 ||
32
- ( version [ 0 ] === 12 && version [ 1 ] < 14 ) ||
32
+ ( version [ 0 ] === 12 && version [ 1 ] < 20 ) ||
33
33
( version [ 0 ] === 14 && version [ 1 ] < 15 )
34
34
) {
35
35
// Error and exit if less than 12.14 or 13.x or less than 14.15
You can’t perform that action at this time.
0 commit comments