We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73864c4 commit b25135fCopy full SHA for b25135f
1 file changed
src/commands/verify.js
@@ -75,8 +75,8 @@ export async function main(
75
{ text: white().bold("source location"), width: 30, align: "right" }
76
);
77
for (const [depName, infos] of Object.entries(deps)) {
78
- const { start, end } = infos.location;
79
- const position = `[${start.line}:${start.column}] - [${end.line}:${end.column}]`;
+ const [start, end] = infos.location;
+ const position = `[${start[0]}:${start[1]}] - [${end[0]}:${end[1]}]`;
80
81
ui.div(
82
{ text: depName, width: 30 },
0 commit comments