@rip-lang/server 1.1.16 → 1.1.18
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/package.json +1 -1
- package/server.rip +2 -2
package/package.json
CHANGED
package/server.rip
CHANGED
|
@@ -71,7 +71,7 @@ scale = (value, unit, pad = true) ->
|
|
|
71
71
|
maxSlot = span.length - 1
|
|
72
72
|
slot = base
|
|
73
73
|
|
|
74
|
-
while value < 0.
|
|
74
|
+
while value < 0.995 and slot <= maxSlot
|
|
75
75
|
value *= 1000
|
|
76
76
|
slot++
|
|
77
77
|
while value >= 999.5 and slot >= minSlot
|
|
@@ -582,7 +582,7 @@ class Manager
|
|
|
582
582
|
timer = setTimeout =>
|
|
583
583
|
timer = null
|
|
584
584
|
@server?.broadcastChange(prefix)
|
|
585
|
-
,
|
|
585
|
+
, 100
|
|
586
586
|
for dir in dirs
|
|
587
587
|
try
|
|
588
588
|
w = watch dir, { recursive: true }, (event, filename) ->
|