@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.
- package/README.md +1 -1
- package/package.json +1 -1
- 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: '
|
|
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
package/server.rip
CHANGED
|
@@ -509,7 +509,7 @@ class Manager
|
|
|
509
509
|
@currentMtime = mt
|
|
510
510
|
@isRolling = true
|
|
511
511
|
@lastRollAt = now
|
|
512
|
-
@rollingRestart
|
|
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)
|