* Report the build ordering inferred from the current project graph if we're in verbose mode
(state, buildQueue)
| 125528 | * Report the build ordering inferred from the current project graph if we're in verbose mode |
| 125529 | */ |
| 125530 | function reportBuildQueue(state, buildQueue) { |
| 125531 | if (state.options.verbose) { |
| 125532 | reportStatus(state, ts.Diagnostics.Projects_in_this_build_Colon_0, buildQueue.map(function (s) { return "\r\n * " + relName(state, s); }).join("")); |
| 125533 | } |
| 125534 | } |
| 125535 | function reportUpToDateStatus(state, configFileName, status) { |
| 125536 | if (state.options.force && (status.type === ts.UpToDateStatusType.UpToDate || status.type === ts.UpToDateStatusType.UpToDateWithUpstreamTypes)) { |
| 125537 | return reportStatus(state, ts.Diagnostics.Project_0_is_being_forcibly_rebuilt, relName(state, configFileName)); |
no test coverage detected
searching dependent graphs…