New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@travetto/base

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@travetto/base - npm Package Compare versions

Comparing version

to
0.0.79

@@ -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;
}