Comparing version 3.1.8 to 3.1.9
@@ -252,2 +252,9 @@ var debug = require('debug')('nodemon:run'); | ||
bus.emit('crash'); | ||
// support the old syntax of `exitcrash` - 2024-12-13 | ||
if (options.exitcrash) { | ||
options.exitCrash = true; | ||
delete options.exitcrash; | ||
} | ||
if (options.exitCrash) { | ||
@@ -254,0 +261,0 @@ utils.log.fail('app crashed'); |
@@ -70,3 +70,3 @@ { | ||
}, | ||
"version": "3.1.8", | ||
"version": "3.1.9", | ||
"funding": { | ||
@@ -73,0 +73,0 @@ "type": "opencollective", |
220421
2761