We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d096cb commit 75e247eCopy full SHA for 75e247e
tasks/framework-tools/tarsync/debug-task-scheduling.mts
@@ -130,7 +130,10 @@ class TaskSchedulingDebugger {
130
this.parseNxOutput(combinedOutput, captureStart)
131
} catch (error) {
132
// Even if the build fails, we want to analyze what happened
133
- const errorOutput = error.stdout + '\n' + error.stderr
+ const errorOutput =
134
+ (error as { stdout?: string }).stdout +
135
+ '\n' +
136
+ (error as { stderr?: string }).stderr
137
this.executionLog.push(`ERROR: ${errorOutput}`)
138
this.parseNxOutput(errorOutput, captureStart)
139
}
0 commit comments