Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

6to5-node breaks Node uncaughtException handler #746

Closed
atombender opened this issue Feb 10, 2015 · 1 comment
Closed

6to5-node breaks Node uncaughtException handler #746

atombender opened this issue Feb 10, 2015 · 1 comment
Labels
outdated A closed issue/PR that is archived due to age. Recommended to make a new issue

Comments

@atombender
Copy link

Test case:

process.on('uncaughtException', function(error) {
  console.log("uncaught");
});                       
throw new Error("Argh");

With Node:

# node test.js                            
uncaught

With 6to5-node:

# 6to5-node test.js
/tmp/test.js:6
throw new Error("Argh");
      ^
Error: Argh
[...]
@sebmck
Copy link
Contributor

sebmck commented Feb 10, 2015

6to5 doesn't intercept uncaughtException anywhere. It's likely a problem with source-map-support. Can you report it upstream?

@sebmck sebmck closed this as completed Feb 10, 2015
@lock lock bot added the outdated A closed issue/PR that is archived due to age. Recommended to make a new issue label Jan 18, 2019
@lock lock bot locked as resolved and limited conversation to collaborators Jan 18, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
outdated A closed issue/PR that is archived due to age. Recommended to make a new issue
Projects
None yet
Development

No branches or pull requests

2 participants