mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
0bb5bbc7a0
This commit fixes emitting "unhandledrejection" event when there are "node:" or "npm:" imports. Before this commit the Node "unhandledRejection" event was emitted using a regular listener for Web "unhandledrejection" event. This listener was installed before any user listener had a chance to be installed which effectively prevent emitting "unhandledrejection" events to user code. Closes https://github.com/denoland/deno/issues/16928
21 lines
482 B
TypeScript
21 lines
482 B
TypeScript
import chalk from "npm:chalk";
|
|
import process from "node:process";
|
|
|
|
console.log(chalk.red("Hello world!"));
|
|
|
|
process.on("unhandledRejection", (_e) => {
|
|
console.log('process.on("unhandledRejection");');
|
|
});
|
|
|
|
globalThis.addEventListener("unhandledrejection", (_e) => {
|
|
console.log('globalThis.addEventListener("unhandledrejection");');
|
|
});
|
|
|
|
// deno-lint-ignore require-await
|
|
(async () => {
|
|
throw new Error("boom!");
|
|
})();
|
|
|
|
setTimeout(() => {
|
|
console.log("Success");
|
|
}, 1000);
|