@quenty/teamutils 10.18.0-canary.ae8d76d.0 → 10.18.0
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/CHANGELOG.md +1 -1
- package/package.json +7 -7
- package/src/Shared/RxTeamUtils.lua +5 -5
- package/src/Shared/TeamUtils.lua +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
# [10.18.0
|
|
6
|
+
# [10.18.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/teamutils@10.17.3...@quenty/teamutils@10.18.0) (2025-05-10)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/teamutils",
|
|
3
|
-
"version": "10.18.0
|
|
3
|
+
"version": "10.18.0",
|
|
4
4
|
"description": "Team utility methods",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"access": "public"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@quenty/brio": "14.18.0
|
|
32
|
-
"@quenty/instanceutils": "13.18.0
|
|
33
|
-
"@quenty/loader": "10.
|
|
34
|
-
"@quenty/maid": "3.
|
|
35
|
-
"@quenty/rx": "13.18.0
|
|
31
|
+
"@quenty/brio": "^14.18.0",
|
|
32
|
+
"@quenty/instanceutils": "^13.18.0",
|
|
33
|
+
"@quenty/loader": "^10.9.0",
|
|
34
|
+
"@quenty/maid": "^3.5.0",
|
|
35
|
+
"@quenty/rx": "^13.18.0"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
|
|
38
38
|
}
|
|
@@ -6,15 +6,15 @@
|
|
|
6
6
|
|
|
7
7
|
local require = require(script.Parent.loader).load(script)
|
|
8
8
|
|
|
9
|
-
local Teams = game:GetService("Teams")
|
|
10
9
|
local Players = game:GetService("Players")
|
|
10
|
+
local Teams = game:GetService("Teams")
|
|
11
11
|
|
|
12
|
-
local Observable = require("Observable")
|
|
13
|
-
local Maid = require("Maid")
|
|
14
12
|
local Brio = require("Brio")
|
|
13
|
+
local Maid = require("Maid")
|
|
14
|
+
local Observable = require("Observable")
|
|
15
|
+
local Rx = require("Rx")
|
|
15
16
|
local RxBrioUtils = require("RxBrioUtils")
|
|
16
17
|
local RxInstanceUtils = require("RxInstanceUtils")
|
|
17
|
-
local Rx = require("Rx")
|
|
18
18
|
|
|
19
19
|
local RxTeamUtils = {}
|
|
20
20
|
|
|
@@ -210,4 +210,4 @@ function RxTeamUtils.observeTeamsBrio(): Observable.Observable<Brio.Brio<Team>>
|
|
|
210
210
|
end) :: any
|
|
211
211
|
end
|
|
212
212
|
|
|
213
|
-
return RxTeamUtils
|
|
213
|
+
return RxTeamUtils
|
package/src/Shared/TeamUtils.lua
CHANGED