@rip-lang/server 0.5.1 → 0.5.2

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.1",
3
+ "version": "0.5.2",
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
@@ -511,7 +511,7 @@ class Manager
511
511
  RIP_RELOAD: @flags.reload
512
512
  RIP_VERSION: String(version or @currentVersion)
513
513
 
514
- proc = Bun.spawn ['bun', '--preload', './rip-loader.js', __filename],
514
+ proc = Bun.spawn ['rip', __filename],
515
515
  stdout: 'inherit'
516
516
  stderr: 'inherit'
517
517
  stdin: 'ignore'