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.
exitcrash
1 parent 880fc42 commit 9c9de6eCopy full SHA for 9c9de6e
1 file changed
lib/monitor/run.js
@@ -249,6 +249,13 @@ function run(options) {
249
}
250
} else {
251
bus.emit('crash');
252
+
253
+ // support the old syntax of `exitcrash` - 2024-12-13
254
+ if (options.exitcrash) {
255
+ options.exitCrash = true;
256
+ delete options.exitcrash;
257
+ }
258
259
if (options.exitCrash) {
260
utils.log.fail('app crashed');
261
if (!config.required) {
0 commit comments