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 {
169169 const versionCombos = [
170170 { compiler : '>=2.3.1 <3.0.0' , typescript : '>=2.0.2 <2.3.0' } ,
171171 { 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' }
173174 ] ;
174175
175176 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';
33
44
55export 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.
77 // Update as needed.
8- let unsupportedTsVersion = '2.5 ' ;
8+ let unsupportedTsVersion = '2.6 ' ;
99
1010 // Skip this test in Angular 2/4.
1111 if ( getGlobalVariable ( 'argv' ) . ng2 || getGlobalVariable ( 'argv' ) . ng4 ) {
You can’t perform that action at this time.
0 commit comments