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 496c91b commit 0696be5Copy full SHA for 0696be5
src/index.ts
@@ -232,9 +232,9 @@ function resolveLaravelPlugin(pluginConfig: Required<PluginConfig>): LaravelPlug
232
}
233
234
process.on('exit', clean)
235
- process.on('SIGINT', process.exit)
236
- process.on('SIGTERM', process.exit)
237
- process.on('SIGHUP', process.exit)
+ process.on('SIGINT', () => process.exit())
+ process.on('SIGTERM', () => process.exit())
+ process.on('SIGHUP', () => process.exit())
238
239
exitHandlersBound = true
240
0 commit comments