node-source-map-support icon indicating copy to clipboard operation
node-source-map-support copied to clipboard

Adds source map support to node.js (for stack traces)

Results 104 node-source-map-support issues
Sort by recently updated
recently updated
newest added

Instead of exiting with 1 we must keep the user-land value defined for `process.exitCode` if it's non-zero otherwise we end up changing the error code defined by the consumer of...

It truncates the error cause lines ```js // app.js require('source-map-support').install(); throw new Error('test 123', { cause: new Error('foo') }) ``` ### current behavior ![image](https://github.com/evanw/node-source-map-support/assets/13461315/94121e28-7c42-459f-b63e-821004ba7bdb) ### expected behavior ![image](https://github.com/evanw/node-source-map-support/assets/13461315/bb3ffd85-48b5-4c7a-a072-a5e500a3cf09) note that...

I needed this library, so I improved it so that all the tests provided in the project are now working. I also added the vite-test that I needed. Maybe it...

Fixes #309. Also addresses minor memory leak in Jest (https://github.com/jestjs/jest/pull/15233).