@quenty/deathreport 8.0.0 → 9.0.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,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
+ # [9.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/deathreport@8.0.0...@quenty/deathreport@9.0.0) (2024-02-13)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Fix bootstrap of test environments and loader samples ([441e4a9](https://github.com/Quenty/NevermoreEngine/commit/441e4a90d19fcc203da2fdedc08e532c20d52f99))
12
+
13
+
14
+
15
+
16
+
6
17
  # [8.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/deathreport@7.0.0...@quenty/deathreport@8.0.0) (2024-02-13)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/deathreport
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2014-2023 James Onnen (Quenty)
3
+ Copyright (c) 2014-2024 James Onnen (Quenty)
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/deathreport",
3
- "version": "8.0.0",
3
+ "version": "9.0.0",
4
4
  "description": "Death report service which will track the deaths of players",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -29,19 +29,19 @@
29
29
  "access": "public"
30
30
  },
31
31
  "dependencies": {
32
- "@quenty/baseobject": "^8.0.0",
33
- "@quenty/binder": "^12.0.0",
34
- "@quenty/characterutils": "^10.0.0",
32
+ "@quenty/baseobject": "^9.0.0",
33
+ "@quenty/binder": "^13.0.0",
34
+ "@quenty/characterutils": "^11.0.0",
35
35
  "@quenty/humanoidkillerutils": "^2.2.0",
36
- "@quenty/loader": "^8.0.0",
36
+ "@quenty/loader": "^9.0.0",
37
37
  "@quenty/maid": "^3.0.0",
38
- "@quenty/playerhumanoidbinder": "^12.0.0",
39
- "@quenty/remoting": "^10.0.0",
40
- "@quenty/rx": "^11.0.0",
41
- "@quenty/rxbinderutils": "^12.0.0",
42
- "@quenty/servicebag": "^9.0.0",
43
- "@quenty/signal": "^5.0.0",
38
+ "@quenty/playerhumanoidbinder": "^13.0.0",
39
+ "@quenty/remoting": "^11.0.0",
40
+ "@quenty/rx": "^12.0.0",
41
+ "@quenty/rxbinderutils": "^13.0.0",
42
+ "@quenty/servicebag": "^10.0.0",
43
+ "@quenty/signal": "^6.0.0",
44
44
  "@quenty/table": "^3.4.0"
45
45
  },
46
- "gitHead": "87df864b5b6a9a9cef7544f6e8054a12cdd120bd"
46
+ "gitHead": "f113de0adce246ebd8115adf49a80533ede329cc"
47
47
  }
@@ -2,10 +2,11 @@
2
2
  @class ClientMain
3
3
  ]]
4
4
 
5
- local packages = game:GetService("ReplicatedStorage"):WaitForChild("Packages")
5
+ local loader = game:GetService("ReplicatedStorage"):WaitForChild("deathreport"):WaitForChild("loader")
6
+ local require = require(loader).bootstrapGame(loader.Parent)
6
7
 
7
- local serviceBag = require(packages.ServiceBag).new()
8
- serviceBag:GetService(require(packages.DeathReportServiceClient))
8
+ local serviceBag = require("ServiceBag").new()
9
+ serviceBag:GetService(require("DeathReportServiceClient"))
9
10
 
10
11
  serviceBag:Init()
11
12
  serviceBag:Start()
@@ -5,10 +5,10 @@
5
5
  local ServerScriptService = game:GetService("ServerScriptService")
6
6
 
7
7
  local loader = ServerScriptService:FindFirstChild("LoaderUtils", true).Parent
8
- local packages = require(loader).bootstrapGame(ServerScriptService.deathreport)
8
+ local require = require(loader).bootstrapGame(ServerScriptService.deathreport)
9
9
 
10
- local serviceBag = require(packages.ServiceBag).new()
11
- serviceBag:GetService(require(packages.DeathReportService))
10
+ local serviceBag = require("ServiceBag").new()
11
+ serviceBag:GetService(require("DeathReportService"))
12
12
 
13
13
  serviceBag:Init()
14
14
  serviceBag:Start()