File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 22* .build.log
33.DS_Store
44/common /last-install.log
5+ /common /npm-local
56/common /local-npm
67/common /npmx-link.json
78coverage
1011lib-amd
1112node_modules
1213npm * .log
13- temp
14+ temp
Original file line number Diff line number Diff line change @@ -234,7 +234,7 @@ function writeSummary(callback: () => void): void {
234234 }
235235
236236 if ( getWarnings ( ) . length ) {
237- log ( 'Task warnings:' , gutil . colors . yellow ( getWarnings ( ) . length + '\r\n' + getWarnings ( ) . join ( '\r\n' ) ) ) ;
237+ log ( 'Task warnings:' , gutil . colors . yellow ( getWarnings ( ) . length . toString ( ) ) ) ;
238238 }
239239
240240 let totalErrors : number = 0 ;
@@ -443,7 +443,7 @@ export function warn(...args: Array<string | Chalk.ChalkChain>): void {
443443 const stringMessage : string = args . join ( ' ' ) ;
444444
445445 if ( ! localCache . errorAndWarningSupressions [ stringMessage ] ) {
446- localCache . errors . push ( stringMessage ) ;
446+ localCache . warnings . push ( stringMessage ) ;
447447 log ( gutil . colors . yellow . apply ( undefined , args ) ) ;
448448 }
449449}
You can’t perform that action at this time.
0 commit comments