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 0fa7fc3 commit 8eed678Copy full SHA for 8eed678
.gitignore
@@ -5,4 +5,5 @@ cSpell.json
5
.idea
6
lab
7
.vscode
8
-jstack.zip
+jstack.zip
9
+dump
src/jstack/js/JStack.hx
@@ -150,6 +150,9 @@ class JStack {
150
var error = uncaughtExceptionHandler(e);
151
if(error != null && error.length > 0) {
152
untyped __js__('console.log({0})', error);
153
+ if (isNode()) {
154
+ untyped __js__('process.exit(1)');
155
+ }
156
}
157
158
0 commit comments