@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.
@@ -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 == 1 then
127
+ if Vide.strict and count == 2 then
128
128
  log()
129
129
  count = 0
130
- else
130
+ elseif not Vide.strict and count == 1 then
131
131
  log()
132
+ count = 0
132
133
  end
133
134
  end)
134
135
  else
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/app-forge",
3
- "version": "0.7.2-alpha.10",
3
+ "version": "0.7.2-alpha.12",
4
4
  "description": "An App Manager for Vide",
5
5
  "main": "out/init.lua",
6
6
  "types": "out/index.d.ts",