Fix spaces in `issues-processor.ts` (#748)
* Fix spaces in `issues-processor.ts` * `npm run build` and `npm run pack`
This commit is contained in:
parent
e577b690d3
commit
a78f1809b1
File diff suppressed because it is too large
Load Diff
|
@ -113,11 +113,11 @@ export class IssuesProcessor {
|
||||||
} else {
|
} else {
|
||||||
this._logger.info(
|
this._logger.info(
|
||||||
`${LoggerService.yellow(
|
`${LoggerService.yellow(
|
||||||
'Processing the batch of issues'
|
'Processing the batch of issues '
|
||||||
)} ${LoggerService.cyan(`#${page}`)} ${LoggerService.yellow(
|
)} ${LoggerService.cyan(`#${page}`)} ${LoggerService.yellow(
|
||||||
'containing'
|
' containing '
|
||||||
)} ${LoggerService.cyan(issues.length)} ${LoggerService.yellow(
|
)} ${LoggerService.cyan(issues.length)} ${LoggerService.yellow(
|
||||||
`issue${issues.length > 1 ? 's' : ''}...`
|
` issue${issues.length > 1 ? 's' : ''}...`
|
||||||
)}`
|
)}`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -151,11 +151,11 @@ export class IssuesProcessor {
|
||||||
);
|
);
|
||||||
this._logger.warning(
|
this._logger.warning(
|
||||||
`${LoggerService.yellowBright(
|
`${LoggerService.yellowBright(
|
||||||
'If you think that not enough issues were processed you could try to increase the quantity related to the'
|
'If you think that not enough issues were processed you could try to increase the quantity related to the '
|
||||||
)} ${this._logger.createOptionLink(
|
)} ${this._logger.createOptionLink(
|
||||||
Option.OperationsPerRun
|
Option.OperationsPerRun
|
||||||
)} ${LoggerService.yellowBright(
|
)} ${LoggerService.yellowBright(
|
||||||
'option which is currently set to'
|
' option which is currently set to '
|
||||||
)} ${LoggerService.cyan(this.options.operationsPerRun)}`
|
)} ${LoggerService.cyan(this.options.operationsPerRun)}`
|
||||||
);
|
);
|
||||||
this.statistics
|
this.statistics
|
||||||
|
@ -166,9 +166,9 @@ export class IssuesProcessor {
|
||||||
}
|
}
|
||||||
|
|
||||||
this._logger.info(
|
this._logger.info(
|
||||||
`${LoggerService.green('Batch')} ${LoggerService.cyan(
|
`${LoggerService.green('Batch ')} ${LoggerService.cyan(
|
||||||
`#${page}`
|
`#${page}`
|
||||||
)} ${LoggerService.green('processed.')}`
|
)} ${LoggerService.green(' processed.')}`
|
||||||
);
|
);
|
||||||
|
|
||||||
// Do the next batch
|
// Do the next batch
|
||||||
|
|
Loading…
Reference in New Issue