File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " wait-in-parallel" ,
3- "version" : " 1.2.1 " ,
3+ "version" : " 1.2.2 " ,
44 "description" : " wait-in-parallel" ,
55 "license" : " MIT" ,
66 "repository" : " https://your-server.com/lifegadget/wait-in-parallel" ,
Original file line number Diff line number Diff line change @@ -82,7 +82,8 @@ export class ParallelError<T = any> extends Error {
8282 successful . length } parallel tasks failed.\nTasks failing were: ${ errorSummary } ."`;
8383 this . message +=
8484 Object . keys ( errors ) . length > 0
85- ? `\n\nFirst error message was: ${ ( this , errors [ firstKey ( errors ) ] . message ) } `
85+ ? `\n\nFirst error message was: ${ ( this , errors [ firstKey ( errors ) ] . message ) } ` +
86+ `\n\nStack trace for first error is:\n${ errors [ firstKey ( errors ) ] . stack } `
8687 : "" ;
8788 this . errors = errors ;
8889 this . failed = failed ;
You can’t perform that action at this time.
0 commit comments