File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,11 @@ export default class RunReporter {
31
31
const diagnostic = response . diagnostic [ 0 ] ;
32
32
if ( ! response . compiled ) {
33
33
outputText . push (
34
- StandardColors . error ( `Error: Line: ${ diagnostic . lineNumber } , Column: ${ diagnostic . columnNumber } ` ) ,
34
+ StandardColors . error (
35
+ `Error: Line: ${ diagnostic . lineNumber ?? '<not provided>' } , Column: ${
36
+ diagnostic . columnNumber ?? '<not provided>'
37
+ } `
38
+ ) ,
35
39
StandardColors . error ( `Error: ${ diagnostic . compileProblem } \n` )
36
40
) ;
37
41
} else {
Original file line number Diff line number Diff line change @@ -4519,12 +4519,7 @@ extend@^3.0.2:
4519
4519
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
4520
4520
integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
4521
4521
4522
- fast-copy@^3.0.0 :
4523
- version "3.0.1"
4524
- resolved "https://registry.yarnpkg.com/fast-copy/-/fast-copy-3.0.1.tgz#9e89ef498b8c04c1cd76b33b8e14271658a732aa"
4525
- integrity sha512-Knr7NOtK3HWRYGtHoJrjkaWepqT8thIVGAwt0p0aUs1zqkAzXZV4vo9fFNwyb5fcqK1GKYFYxldQdIDVKhUAfA==
4526
-
4527
- fast-copy@^3.0.2 :
4522
+ fast-copy@^3.0.0, fast-copy@^3.0.2 :
4528
4523
version "3.0.2"
4529
4524
resolved "https://registry.yarnpkg.com/fast-copy/-/fast-copy-3.0.2.tgz#59c68f59ccbcac82050ba992e0d5c389097c9d35"
4530
4525
integrity sha512-dl0O9Vhju8IrcLndv2eU4ldt1ftXMqqfgN4H1cpmGV7P6jeB9FwpN9a2c8DPGE1Ys88rNUJVYDHq73CGAGOPfQ==
You can’t perform that action at this time.
0 commit comments