@quenty/boundlinkutils 14.20.0-canary.ae8d76d.0 → 14.20.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,7 @@
|
|
|
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
|
-
# [14.20.0
|
|
6
|
+
# [14.20.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/boundlinkutils@14.19.3...@quenty/boundlinkutils@14.20.0) (2025-05-10)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @quenty/boundlinkutils
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/boundlinkutils",
|
|
3
|
-
"version": "14.20.0
|
|
3
|
+
"version": "14.20.0",
|
|
4
4
|
"description": "Utility functions involving binders and links",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/binder": "14.20.0
|
|
29
|
-
"@quenty/linkutils": "13.18.0
|
|
30
|
-
"@quenty/loader": "10.
|
|
31
|
-
"@quenty/maid": "3.
|
|
32
|
-
"@quenty/promise": "10.11.0
|
|
33
|
-
"@quenty/signal": "7.
|
|
28
|
+
"@quenty/binder": "^14.20.0",
|
|
29
|
+
"@quenty/linkutils": "^13.18.0",
|
|
30
|
+
"@quenty/loader": "^10.9.0",
|
|
31
|
+
"@quenty/maid": "^3.5.0",
|
|
32
|
+
"@quenty/promise": "^10.11.0",
|
|
33
|
+
"@quenty/signal": "^7.11.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
|
|
39
39
|
}
|
|
@@ -9,8 +9,8 @@ local require = require(script.Parent.loader).load(script)
|
|
|
9
9
|
|
|
10
10
|
local CollectionService = game:GetService("CollectionService")
|
|
11
11
|
|
|
12
|
-
local LinkUtils = require("LinkUtils")
|
|
13
12
|
local BinderUtils = require("BinderUtils")
|
|
13
|
+
local LinkUtils = require("LinkUtils")
|
|
14
14
|
|
|
15
15
|
local BoundLinkUtils = {}
|
|
16
16
|
|
|
@@ -154,4 +154,4 @@ function BoundLinkUtils.callMethodOnLinkedClasses(binders, linkName, from, metho
|
|
|
154
154
|
end
|
|
155
155
|
end
|
|
156
156
|
|
|
157
|
-
return BoundLinkUtils
|
|
157
|
+
return BoundLinkUtils
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
|
|
8
8
|
local require = require(script.Parent.loader).load(script)
|
|
9
9
|
|
|
10
|
-
local Promise = require("Promise")
|
|
11
10
|
local Maid = require("Maid")
|
|
11
|
+
local Promise = require("Promise")
|
|
12
12
|
|
|
13
13
|
return function(binder, objValue)
|
|
14
14
|
if objValue.Value then
|
|
@@ -39,4 +39,4 @@ return function(binder, objValue)
|
|
|
39
39
|
end)
|
|
40
40
|
|
|
41
41
|
return promise
|
|
42
|
-
end
|
|
42
|
+
end
|