@quenty/deathreport 10.42.0 → 10.43.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 CHANGED
@@ -3,6 +3,12 @@
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.43.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/deathreport@10.42.0...@quenty/deathreport@10.43.0) (2026-05-20)
7
+
8
+ ### Features
9
+
10
+ - **luau:** convert 41 trivial files to --!strict typing ([0edcac1](https://github.com/Quenty/NevermoreEngine/commit/0edcac1e5ce096662406c2685e22469c22c187e4))
11
+
6
12
  # [10.42.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/deathreport@10.41.2...@quenty/deathreport@10.42.0) (2026-05-18)
7
13
 
8
14
  **Note:** Version bump only for package @quenty/deathreport
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/deathreport",
3
- "version": "10.42.0",
3
+ "version": "10.43.0",
4
4
  "description": "Death report service which will track the deaths of players",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -48,5 +48,5 @@
48
48
  "@quenty/table": "3.9.2",
49
49
  "@quentystudios/jest-lua": "3.10.0-quenty.2"
50
50
  },
51
- "gitHead": "5cba15660c2856169fd0362e1eeeca4c260029c2"
51
+ "gitHead": "e9274ae087550f64d37a3a604b867829e438f8da"
52
52
  }
@@ -1,4 +1,4 @@
1
- --!nonstrict
1
+ --!strict
2
2
  --[=[
3
3
  @class DeathReportBindersClient
4
4
  ]=]
@@ -1,4 +1,4 @@
1
- --!nonstrict
1
+ --!strict
2
2
  --[=[
3
3
  @class DeathReportBindersServer
4
4
  ]=]
@@ -1,4 +1,4 @@
1
- --!nonstrict
1
+ --!strict
2
2
  --[=[
3
3
  @class DeathReportServiceConstants
4
4
  ]=]
@@ -1,4 +1,4 @@
1
- --!nonstrict
1
+ --!strict
2
2
  --[=[
3
3
  @class PlayerKillTrackerUtils
4
4
  ]=]
@@ -10,7 +10,7 @@ local RxBinderUtils = require("RxBinderUtils")
10
10
 
11
11
  local PlayerKillTrackerUtils = {}
12
12
 
13
- function PlayerKillTrackerUtils.create(binder, player)
13
+ function PlayerKillTrackerUtils.create(binder: any, player: Player): IntValue
14
14
  assert(typeof(player) == "Instance", "Bad player")
15
15
 
16
16
  local score = Instance.new("IntValue")
@@ -24,14 +24,14 @@ function PlayerKillTrackerUtils.create(binder, player)
24
24
  return score
25
25
  end
26
26
 
27
- function PlayerKillTrackerUtils.observeBrio(binder, player)
27
+ function PlayerKillTrackerUtils.observeBrio(binder: any, player: Player): any
28
28
  assert(typeof(player) == "Instance" and player:IsA("Player"), "Bad player")
29
29
 
30
30
  -- This ain't performant, but it's ok
31
31
  return RxBinderUtils.observeBoundChildClassBrio(binder, player)
32
32
  end
33
33
 
34
- function PlayerKillTrackerUtils.getPlayerKillTracker(binder, team)
34
+ function PlayerKillTrackerUtils.getPlayerKillTracker(binder: any, team: Instance): any
35
35
  return BinderUtils.findFirstChild(binder, team)
36
36
  end
37
37
 
@@ -1,4 +1,4 @@
1
- --!nonstrict
1
+ --!strict
2
2
  --[=[
3
3
  @class TeamKillTrackerUtils
4
4
  ]=]
@@ -10,7 +10,7 @@ local RxBinderUtils = require("RxBinderUtils")
10
10
 
11
11
  local TeamKillTrackerUtils = {}
12
12
 
13
- function TeamKillTrackerUtils.create(binder)
13
+ function TeamKillTrackerUtils.create(binder: any): IntValue
14
14
  local score = Instance.new("IntValue")
15
15
  score.Name = "TeamKillTracker"
16
16
  score.Value = 0
@@ -20,14 +20,14 @@ function TeamKillTrackerUtils.create(binder)
20
20
  return score
21
21
  end
22
22
 
23
- function TeamKillTrackerUtils.observeBrio(binder, player)
23
+ function TeamKillTrackerUtils.observeBrio(binder: any, player: Instance): any
24
24
  assert(typeof(player) == "Instance", "Bad player")
25
25
 
26
26
  -- This ain't performant, but it's ok
27
27
  return RxBinderUtils.observeBoundChildClassBrio(binder, player)
28
28
  end
29
29
 
30
- function TeamKillTrackerUtils.getTeamKillTracker(binder, team)
30
+ function TeamKillTrackerUtils.getTeamKillTracker(binder: any, team: Instance): any
31
31
  return BinderUtils.findFirstChild(binder, team)
32
32
  end
33
33