Skip to content

Commit 407a681

Browse files
committed
fix: Refactor stack trace file path formatting in index.ts for improved clarity
1 parent 8a6fb44 commit 407a681

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ try {
3939
}
4040
: {};
4141

42-
stackInfo.file = stackInfo.file?.replace(/^([^\/]+\/){5}/, "");
42+
stackInfo.file = stackInfo.file?.split("/").slice(5).join("/");
4343
info(`Stack: ${JSON.stringify(stackInfo, null, 2)}`);
4444
error(e.message, {
4545
title: e.name,

0 commit comments

Comments
 (0)