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