@quenty/teamutils 10.17.3 → 10.17.4-canary.11a5dcf.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 +11 -0
- package/package.json +7 -7
- package/src/Shared/RxTeamUtils.lua +6 -6
- package/src/Shared/TeamUtils.lua +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.17.4-canary.11a5dcf.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/teamutils@10.17.3...@quenty/teamutils@10.17.4-canary.11a5dcf.0) (2025-05-10)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Additional type checking updates ([05ba29a](https://github.com/Quenty/NevermoreEngine/commit/05ba29a03efc9f3feed74b34f1d9dfb237496214))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [10.17.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/teamutils@10.17.2...@quenty/teamutils@10.17.3) (2025-04-10)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/teamutils
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/teamutils",
|
|
3
|
-
"version": "10.17.
|
|
3
|
+
"version": "10.17.4-canary.11a5dcf.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": "
|
|
32
|
-
"@quenty/instanceutils": "
|
|
33
|
-
"@quenty/loader": "
|
|
34
|
-
"@quenty/maid": "
|
|
35
|
-
"@quenty/rx": "
|
|
31
|
+
"@quenty/brio": "14.17.4-canary.11a5dcf.0",
|
|
32
|
+
"@quenty/instanceutils": "13.17.4-canary.11a5dcf.0",
|
|
33
|
+
"@quenty/loader": "10.8.4-canary.11a5dcf.0",
|
|
34
|
+
"@quenty/maid": "3.4.4-canary.11a5dcf.0",
|
|
35
|
+
"@quenty/rx": "13.17.4-canary.11a5dcf.0"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "11a5dcf7d4c7a0bfbf3337e97d30e8346ea09d3f"
|
|
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
|
|
|
@@ -137,7 +137,7 @@ function RxTeamUtils.observePlayersForTeamColorBrio(teamColor: BrickColor): Obse
|
|
|
137
137
|
-- with the same color so no great solution here.
|
|
138
138
|
RxBrioUtils.switchMapBrio(function(team)
|
|
139
139
|
return RxTeamUtils.observePlayersForTeamBrio(team)
|
|
140
|
-
end),
|
|
140
|
+
end) :: any,
|
|
141
141
|
}) :: any
|
|
142
142
|
end
|
|
143
143
|
|
|
@@ -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