6
6
* found in the LICENSE file at https://angular.io/license
7
7
*/
8
8
9
- import { logging , tags } from '@angular-devkit/core' ;
10
- import { SemVer , gte , satisfies } from 'semver' ;
9
+ /* eslint-disable no-console */
11
10
12
- export function assertCompatibleAngularVersion ( projectRoot : string , logger : logging . LoggerApi ) {
11
+ import { tags } from '@angular-devkit/core' ;
12
+ import { SemVer , satisfies } from 'semver' ;
13
+
14
+ export function assertCompatibleAngularVersion ( projectRoot : string ) : void | never {
13
15
let angularCliPkgJson ;
14
16
let angularPkgJson ;
15
17
let rxjsPkgJson ;
@@ -22,15 +24,15 @@ export function assertCompatibleAngularVersion(projectRoot: string, logger: logg
22
24
angularPkgJson = require ( angularPackagePath ) ;
23
25
rxjsPkgJson = require ( rxjsPackagePath ) ;
24
26
} catch {
25
- logger . error ( tags . stripIndents `
27
+ console . error ( tags . stripIndents `
26
28
You seem to not be depending on "@angular/core" and/or "rxjs". This is an error.
27
29
` ) ;
28
30
29
31
process . exit ( 2 ) ;
30
32
}
31
33
32
34
if ( ! ( angularPkgJson && angularPkgJson [ 'version' ] && rxjsPkgJson && rxjsPkgJson [ 'version' ] ) ) {
33
- logger . error ( tags . stripIndents `
35
+ console . error ( tags . stripIndents `
34
36
Cannot determine versions of "@angular/core" and/or "rxjs".
35
37
This likely means your local installation is broken. Please reinstall your packages.
36
38
` ) ;
@@ -63,7 +65,7 @@ export function assertCompatibleAngularVersion(projectRoot: string, logger: logg
63
65
const supportedAngularSemver = `^${ cliMajor } .0.0-next || >=${ cliMajor } .0.0 <${ cliMajor + 1 } .0.0` ;
64
66
65
67
if ( ! satisfies ( angularVersion , supportedAngularSemver , { includePrerelease : true } ) ) {
66
- logger . error (
68
+ console . error (
67
69
tags . stripIndents `
68
70
This version of CLI is only compatible with Angular versions ${ supportedAngularSemver } ,
69
71
but Angular version ${ angularVersion } was found instead.
0 commit comments