@rip-lang/server 0.5.4 → 0.5.5

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/server.rip +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rip-lang/server",
3
- "version": "0.5.4",
3
+ "version": "0.5.5",
4
4
  "description": "Pure Rip application server — multi-worker, hot reload, HTTPS, mDNS",
5
5
  "type": "module",
6
6
  "main": "server.rip",
package/server.rip CHANGED
@@ -523,7 +523,7 @@ class Manager
523
523
  tracked
524
524
 
525
525
  monitor: (w) ->
526
- w.process.exited
526
+ await w.process.exited # Wait for process to exit
527
527
  return if @shuttingDown
528
528
  return if @retiringIds.has(w.id)
529
529
  w.restartCount++