@rbxts/app-forge 0.7.2-prototype.26 → 0.7.2-prototype.27

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.
@@ -6,7 +6,7 @@ local function hasAppSource(name, group)
6
6
  local _name = name
7
7
  local sourceMap = AppSources[_name]
8
8
  if not sourceMap then
9
- local _ = false
9
+ return false
10
10
  end
11
11
  local _source = sourceMap
12
12
  if _source ~= nil then
@@ -15,7 +15,7 @@ local function hasAppSource(name, group)
15
15
  end
16
16
  local source = _source
17
17
  if not source then
18
- local _ = false
18
+ return false
19
19
  end
20
20
  return true
21
21
  end
package/out/renders.luau CHANGED
@@ -203,6 +203,7 @@ do
203
203
  return nil
204
204
  end
205
205
  local instance = entry.constructor.new(props, name, group):render()
206
+ instance.Name = "Render"
206
207
  local container = (Vide.jsx("frame", {
207
208
  Name = name,
208
209
  BackgroundTransparency = 1,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/app-forge",
3
- "version": "0.7.2-prototype.26",
3
+ "version": "0.7.2-prototype.27",
4
4
  "description": "An App Manager for Vide",
5
5
  "main": "out/init.lua",
6
6
  "types": "out/index.d.ts",