@rbxts/app-forge 0.7.2-alpha.6 → 0.7.2-alpha.7

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.
@@ -109,8 +109,13 @@ do
109
109
  local _name = name
110
110
  local _value = value
111
111
  _sources[_name] = _value
112
+ local prev
112
113
  effect(function()
113
- value()
114
+ prev = value()
115
+ self.debug:logTag("state", name, "Visibility changed", {
116
+ from = prev,
117
+ to = value,
118
+ })
114
119
  untrack(function()
115
120
  return self:checkRules(name)
116
121
  end)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/app-forge",
3
- "version": "0.7.2-alpha.6",
3
+ "version": "0.7.2-alpha.7",
4
4
  "description": "An App Manager for Vide",
5
5
  "main": "out/init.lua",
6
6
  "types": "out/index.d.ts",