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 7
7
*/
8
8
import 'symbol-observable' ;
9
9
// symbol polyfill must go first
10
- // tslint:disable: no-console
11
10
// tslint:disable-next-line:ordered-imports import-groups
12
11
import { tags } from '@angular-devkit/core' ;
13
12
import * as fs from 'fs' ;
@@ -109,7 +108,7 @@ if (disableVersionCheck) {
109
108
localVersion = _fromPackageJson ( ) ;
110
109
shouldWarn = localVersion != null && globalVersion . compare ( localVersion ) > 0 ;
111
110
} catch ( e ) {
112
- // eslint- disable-next-line no-console
111
+ // tslint: disable-next-line no-console
113
112
console . error ( e ) ;
114
113
shouldWarn = true ;
115
114
}
@@ -123,10 +122,10 @@ if (disableVersionCheck) {
123
122
` ) ;
124
123
// Don't show warning colorised on `ng completion`
125
124
if ( process . argv [ 2 ] !== 'completion' ) {
126
- // eslint- disable-next-line no-console
125
+ // tslint: disable-next-line no-console
127
126
console . error ( warning ) ;
128
127
} else {
129
- // eslint- disable-next-line no-console
128
+ // tslint: disable-next-line no-console
130
129
console . error ( warning ) ;
131
130
process . exit ( 1 ) ;
132
131
}
@@ -167,6 +166,7 @@ cli({
167
166
process . exit ( exitCode ) ;
168
167
} )
169
168
. catch ( ( err : Error ) => {
169
+ // tslint:disable-next-line no-console
170
170
console . error ( 'Unknown error: ' + err . toString ( ) ) ;
171
171
process . exit ( 127 ) ;
172
172
} ) ;
You can’t perform that action at this time.
0 commit comments