@rbxts/app-forge 0.3.6 → 0.3.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.
Files changed (2) hide show
  1. package/out/rules.luau +4 -8
  2. package/package.json +1 -1
package/out/rules.luau CHANGED
@@ -49,15 +49,11 @@ do
49
49
  local allNames = Object.keys(AppRegistry)
50
50
  -- ▼ ReadonlyArray.forEach ▼
51
51
  local _callback = function(n)
52
- local _condition = not (n ~= "" and n)
52
+ local _condition = not (n ~= "" and n) or n == name
53
53
  if not _condition then
54
- local _condition_1 = n == name
55
- if _condition_1 then
56
- local _loaded = self.appManager.loaded
57
- local _n = n
58
- _condition_1 = _loaded[_n]
59
- end
60
- _condition = _condition_1
54
+ local _loaded = self.appManager.loaded
55
+ local _n = n
56
+ _condition = _loaded[_n]
61
57
  end
62
58
  if _condition then
63
59
  return nil
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/app-forge",
3
- "version": "0.3.6",
3
+ "version": "0.3.7",
4
4
  "description": "An App Manager for react",
5
5
  "main": "out/init.lua",
6
6
  "packageManager": "bun@1.3.1",