@quenty/bindtocloseservice 8.18.0-canary.ae8d76d.0 → 8.18.1-canary.4ea661c.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,7 +3,15 @@
|
|
|
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
|
+
## [8.18.1-canary.4ea661c.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/bindtocloseservice@8.18.0...@quenty/bindtocloseservice@8.18.1-canary.4ea661c.0) (2025-08-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/bindtocloseservice
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [8.18.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/bindtocloseservice@8.17.3...@quenty/bindtocloseservice@8.18.0) (2025-05-10)
|
|
7
15
|
|
|
8
16
|
|
|
9
17
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/bindtocloseservice",
|
|
3
|
-
"version": "8.18.
|
|
3
|
+
"version": "8.18.1-canary.4ea661c.0",
|
|
4
4
|
"description": "Bind to game close API in a centralized location.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
"access": "public"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@quenty/loader": "10.
|
|
31
|
-
"@quenty/maid": "3.
|
|
32
|
-
"@quenty/promise": "10.11.0
|
|
33
|
-
"@quenty/symbol": "3.
|
|
30
|
+
"@quenty/loader": "10.9.0",
|
|
31
|
+
"@quenty/maid": "3.5.0",
|
|
32
|
+
"@quenty/promise": "10.11.0",
|
|
33
|
+
"@quenty/symbol": "3.5.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@quenty/contentproviderutils": "12.18.
|
|
37
|
-
"@quenty/playerthumbnailutils": "10.11.0
|
|
36
|
+
"@quenty/contentproviderutils": "12.18.1-canary.4ea661c.0",
|
|
37
|
+
"@quenty/playerthumbnailutils": "10.11.0"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "4ea661c3fb52b8a3843c7d879c98c1de8a733798"
|
|
40
40
|
}
|
|
@@ -9,11 +9,11 @@ local require = require(script.Parent.loader).load(script)
|
|
|
9
9
|
|
|
10
10
|
local RunService = game:GetService("RunService")
|
|
11
11
|
|
|
12
|
-
local PromiseUtils = require("PromiseUtils")
|
|
13
|
-
local Symbol = require("Symbol")
|
|
14
|
-
local Promise = require("Promise")
|
|
15
12
|
local Maid = require("Maid")
|
|
13
|
+
local Promise = require("Promise")
|
|
14
|
+
local PromiseUtils = require("PromiseUtils")
|
|
16
15
|
local ServiceBag = require("ServiceBag")
|
|
16
|
+
local Symbol = require("Symbol")
|
|
17
17
|
|
|
18
18
|
local BindToCloseService = {}
|
|
19
19
|
BindToCloseService.ServiceName = "BindToCloseService"
|
|
@@ -82,4 +82,4 @@ function BindToCloseService:Destroy()
|
|
|
82
82
|
self._maid:DoCleaning()
|
|
83
83
|
end
|
|
84
84
|
|
|
85
|
-
return BindToCloseService
|
|
85
|
+
return BindToCloseService
|