File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 77 */
88import 'symbol-observable' ;
99// symbol polyfill must go first
10- // tslint:disable: no-console
1110// tslint:disable-next-line:ordered-imports import-groups
1211import { tags } from '@angular-devkit/core' ;
1312import * as fs from 'fs' ;
@@ -109,7 +108,7 @@ if (disableVersionCheck) {
109108 localVersion = _fromPackageJson ( ) ;
110109 shouldWarn = localVersion != null && globalVersion . compare ( localVersion ) > 0 ;
111110 } catch ( e ) {
112- // eslint- disable-next-line no-console
111+ // tslint: disable-next-line no-console
113112 console . error ( e ) ;
114113 shouldWarn = true ;
115114 }
@@ -123,10 +122,10 @@ if (disableVersionCheck) {
123122 ` ) ;
124123 // Don't show warning colorised on `ng completion`
125124 if ( process . argv [ 2 ] !== 'completion' ) {
126- // eslint- disable-next-line no-console
125+ // tslint: disable-next-line no-console
127126 console . error ( warning ) ;
128127 } else {
129- // eslint- disable-next-line no-console
128+ // tslint: disable-next-line no-console
130129 console . error ( warning ) ;
131130 process . exit ( 1 ) ;
132131 }
@@ -167,6 +166,7 @@ cli({
167166 process . exit ( exitCode ) ;
168167 } )
169168 . catch ( ( err : Error ) => {
169+ // tslint:disable-next-line no-console
170170 console . error ( 'Unknown error: ' + err . toString ( ) ) ;
171171 process . exit ( 127 ) ;
172172 } ) ;
You can’t perform that action at this time.
0 commit comments