@travetto/base
Advanced tools
@@ -22,3 +22,3 @@ { | ||
"scripts": {}, | ||
"version": "0.0.78" | ||
"version": "0.0.79" | ||
} |
@@ -63,2 +63,35 @@ import { AppEnv } from './env'; | ||
} | ||
} | ||
} | ||
export function simplifyStack(err: Error, cwd = process.cwd()) { | ||
const getName = (x: string) => { | ||
const l = x.split(cwd)[1]; | ||
if (l) { | ||
return l.split(/[.][tj]s/)[0]; | ||
} | ||
return undefined; | ||
} | ||
let lastName: string = ''; | ||
const body = err.stack!.split('\n') | ||
.filter(x => !/\/@travetto\/(test|base|compile|registry|exec|pool)/.test(x)) // Exclude framework boilerplate | ||
.reduce((acc, l) => { | ||
const name = getName(l); | ||
if (name === lastName) { | ||
// Do nothing | ||
} else { | ||
if (name) { | ||
lastName = name; | ||
} | ||
acc.push(l); | ||
} | ||
return acc; | ||
}, [] as string[]) | ||
.map(x => x.replace(`${process.cwd()}/`, '') | ||
.replace('node_modules', 'n_m') | ||
.replace(/n_m\/@travetto\/([^/]+)\/src/g, (a, p) => `@trv/${p}`) | ||
) | ||
.join(' \n'); | ||
return body; | ||
} |
30057
2.91%899
3.57%