We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14721d1 commit 86ac08bCopy full SHA for 86ac08b
.changeset/stale-oranges-report.md
@@ -0,0 +1,5 @@
1
+---
2
+'@rocket/cli': patch
3
4
+
5
+fix: warning UnhandledPromiseRejectionWarning not throwing with node < 15
packages/cli/src/cli.js
@@ -4,3 +4,7 @@ import { RocketCli } from './RocketCli.js';
const cli = new RocketCli();
6
cli.run();
7
8
+process.on('unhandledRejection', up => {
9
+ throw up;
10
+});
0 commit comments