@rbxts/app-forge 0.4.3 → 0.4.5

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/init.luau +2 -1
  2. package/package.json +3 -2
package/out/init.luau CHANGED
@@ -1,6 +1,8 @@
1
1
  -- Compiled with roblox-ts v3.0.0
2
2
  local TS = _G[script]
3
3
  local exports = {}
4
+ -- Services
5
+ local RunService = TS.import(script, TS.getModule(script, "@rbxts", "services")).RunService
4
6
  -- Packages
5
7
  local React = TS.import(script, TS.getModule(script, "@rbxts", "react"))
6
8
  -- Types
@@ -12,7 +14,6 @@ local App = _decorator.App
12
14
  local AppContainer = TS.import(script, script, "container").AppContainer
13
15
  -- Classes
14
16
  local RulesManager = TS.import(script, script, "rules").default
15
- local RunService = TS.import(script, TS.getModule(script, "@rbxts", "services")).RunService
16
17
  local AppForge
17
18
  do
18
19
  AppForge = setmetatable({}, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/app-forge",
3
- "version": "0.4.3",
3
+ "version": "0.4.5",
4
4
  "description": "An App Manager for react",
5
5
  "main": "out/init.lua",
6
6
  "packageManager": "bun@1.3.1",
@@ -54,6 +54,7 @@
54
54
  "peerDependencies": {
55
55
  "@rbxts/loners-pretty-react-hooks": "*",
56
56
  "@rbxts/react-roblox": "*",
57
- "@rbxts/react": "*"
57
+ "@rbxts/react": "*",
58
+ "@rbxts/charm": "*"
58
59
  }
59
60
  }