@rbxts/app-forge 0.7.2-alpha.10 → 0.7.2-alpha.12
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/out/vide/init.luau +4 -3
- package/package.json +1 -1
package/out/vide/init.luau
CHANGED
|
@@ -120,15 +120,16 @@ do
|
|
|
120
120
|
local count = 0
|
|
121
121
|
effect(function()
|
|
122
122
|
count += 1
|
|
123
|
-
prev = value
|
|
123
|
+
prev = value()
|
|
124
124
|
untrack(function()
|
|
125
125
|
return self:checkRules(name)
|
|
126
126
|
end)
|
|
127
|
-
if Vide.strict and count ==
|
|
127
|
+
if Vide.strict and count == 2 then
|
|
128
128
|
log()
|
|
129
129
|
count = 0
|
|
130
|
-
|
|
130
|
+
elseif not Vide.strict and count == 1 then
|
|
131
131
|
log()
|
|
132
|
+
count = 0
|
|
132
133
|
end
|
|
133
134
|
end)
|
|
134
135
|
else
|