@nxtedition/lib 23.0.2 → 23.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app.js +2 -0
- package/package.json +1 -1
package/app.js
CHANGED
|
@@ -931,6 +931,7 @@ export function makeApp(appConfig, onTerminate) {
|
|
|
931
931
|
}
|
|
932
932
|
})
|
|
933
933
|
.listen(port)
|
|
934
|
+
.unref()
|
|
934
935
|
|
|
935
936
|
logger.debug({ port }, 'inspect listening')
|
|
936
937
|
|
|
@@ -1023,6 +1024,7 @@ export function makeApp(appConfig, onTerminate) {
|
|
|
1023
1024
|
}
|
|
1024
1025
|
})
|
|
1025
1026
|
.listen(port)
|
|
1027
|
+
.unref()
|
|
1026
1028
|
|
|
1027
1029
|
logger.debug({ port }, 'utils listening')
|
|
1028
1030
|
|