@rip-lang/server 1.1.5 → 1.1.6

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 (3) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/server.rip +1 -1
package/README.md CHANGED
@@ -472,7 +472,7 @@ import { ripUI } from '@rip-lang/ui/serve'
472
472
 
473
473
  dir = import.meta.dir
474
474
 
475
- use ripUI dir: dir, components: 'pages', includes: ['ui'], watch: true, title: 'My App'
475
+ use ripUI dir: dir, components: 'routes', includes: ['ui'], watch: true, title: 'My App'
476
476
 
477
477
  get '/css/*', -> @send "#{dir}/css/#{@req.path.slice(5)}"
478
478
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rip-lang/server",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
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
@@ -509,7 +509,7 @@ class Manager
509
509
  @currentMtime = mt
510
510
  @isRolling = true
511
511
  @lastRollAt = now
512
- @rollingRestart!.finally => @isRolling = false
512
+ @rollingRestart().finally => @isRolling = false
513
513
  , 50
514
514
 
515
515
  # Watch files in app directory - touch entry file on changes (opt-in via -w/--watch)