@rbxts/app-forge 0.3.5 → 0.3.6
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/rules.luau +11 -1
- package/package.json +1 -1
package/out/rules.luau
CHANGED
|
@@ -49,7 +49,17 @@ do
|
|
|
49
49
|
local allNames = Object.keys(AppRegistry)
|
|
50
50
|
-- ▼ ReadonlyArray.forEach ▼
|
|
51
51
|
local _callback = function(n)
|
|
52
|
-
|
|
52
|
+
local _condition = not (n ~= "" and n)
|
|
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
|
|
61
|
+
end
|
|
62
|
+
if _condition then
|
|
53
63
|
return nil
|
|
54
64
|
end
|
|
55
65
|
local _n = n
|