@quenty/servicebag 6.2.0 → 6.3.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 +2 -2
- package/src/Shared/ServiceBag.lua +2 -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
|
+
# [6.3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/servicebag@6.2.0...@quenty/servicebag@6.3.0) (2022-11-19)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Fix service bag deconstruction ([11d7cc9](https://github.com/Quenty/NevermoreEngine/commit/11d7cc973195d6462b83c87cd96fadb752037880))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [6.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/servicebag@6.1.1...@quenty/servicebag@6.2.0) (2022-11-12)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/servicebag",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.0",
|
|
4
4
|
"description": "Service providing mechanisms for Nevermore",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"publishConfig": {
|
|
34
34
|
"access": "public"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "2114f42ae399a4417a3ebd4d35bf481690ca7923"
|
|
37
37
|
}
|
|
@@ -285,7 +285,8 @@ function ServiceBag:Destroy()
|
|
|
285
285
|
local key, service = next(services)
|
|
286
286
|
while service ~= nil do
|
|
287
287
|
services[key] = nil
|
|
288
|
-
|
|
288
|
+
|
|
289
|
+
if not (self._serviceTypesToInitializeSet and self._serviceTypesToInitializeSet[key]) then
|
|
289
290
|
task.spawn(function()
|
|
290
291
|
if service.Destroy then
|
|
291
292
|
service:Destroy()
|