File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
packages/@angular/cli/upgrade Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -169,7 +169,8 @@ export class Version {
169
169
const versionCombos = [
170
170
{ compiler : '>=2.3.1 <3.0.0' , typescript : '>=2.0.2 <2.3.0' } ,
171
171
{ compiler : '>=4.0.0 <5.0.0' , typescript : '>=2.1.0 <2.4.0' } ,
172
- { compiler : '>=5.0.0 <6.0.0' , typescript : '>=2.4.2 <2.5.0' }
172
+ { compiler : '>=5.0.0 <5.1.0' , typescript : '>=2.4.2 <2.5.0' } ,
173
+ { compiler : '>=5.1.0 <6.0.0' , typescript : '>=2.4.2 <2.6.0' }
173
174
] ;
174
175
175
176
const currentCombo = versionCombos . find ( ( combo ) => satisfies ( compilerVersion , combo . compiler ) ) ;
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ import { getGlobalVariable } from '../../utils/env';
3
3
4
4
5
5
export default function ( ) {
6
- // typescript@2.5 is not part of the officially supported range in latest stable.
6
+ // typescript@2.6 is not part of the officially supported range in latest stable.
7
7
// Update as needed.
8
- let unsupportedTsVersion = '2.5 ' ;
8
+ let unsupportedTsVersion = '2.6 ' ;
9
9
10
10
// Skip this test in Angular 2/4.
11
11
if ( getGlobalVariable ( 'argv' ) . ng2 || getGlobalVariable ( 'argv' ) . ng4 ) {
You can’t perform that action at this time.
0 commit comments