MCPcopy Index your code
hub / github.com/nodejs/node / reportBuildQueue

Function reportBuildQueue

test/fixtures/snapshot/typescript.js:125530–125534  ·  view source on GitHub ↗

* Report the build ordering inferred from the current project graph if we're in verbose mode

(state, buildQueue)

Source from the content-addressed store, hash-verified

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));

Callers 2

reportErrorSummaryFunction · 0.85

Calls 4

reportStatusFunction · 0.85
relNameFunction · 0.85
mapMethod · 0.65
joinMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…