@quenty/linkutils 13.18.0-canary.ae8d76d.0 → 13.18.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 +1 -1
- package/package.json +8 -8
- package/src/Shared/LinkUtils.lua +2 -2
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
|
-
# [13.18.0
|
|
6
|
+
# [13.18.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/linkutils@13.17.3...@quenty/linkutils@13.18.0) (2025-05-10)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/linkutils",
|
|
3
|
-
"version": "13.18.0
|
|
3
|
+
"version": "13.18.0",
|
|
4
4
|
"description": "Utility functions for links. Links are object values pointing to other values!",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/brio": "14.18.0
|
|
29
|
-
"@quenty/instanceutils": "13.18.0
|
|
30
|
-
"@quenty/loader": "10.
|
|
31
|
-
"@quenty/maid": "3.
|
|
32
|
-
"@quenty/promise": "10.11.0
|
|
33
|
-
"@quenty/rx": "13.18.0
|
|
28
|
+
"@quenty/brio": "^14.18.0",
|
|
29
|
+
"@quenty/instanceutils": "^13.18.0",
|
|
30
|
+
"@quenty/loader": "^10.9.0",
|
|
31
|
+
"@quenty/maid": "^3.5.0",
|
|
32
|
+
"@quenty/promise": "^10.11.0",
|
|
33
|
+
"@quenty/rx": "^13.18.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
|
|
39
39
|
}
|
package/src/Shared/LinkUtils.lua
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
local require = require(script.Parent.loader).load(script)
|
|
8
8
|
|
|
9
|
-
local promisePropertyValue = require("promisePropertyValue")
|
|
10
9
|
local promiseChild = require("promiseChild")
|
|
10
|
+
local promisePropertyValue = require("promisePropertyValue")
|
|
11
11
|
|
|
12
12
|
local LinkUtils = {}
|
|
13
13
|
|
|
@@ -171,4 +171,4 @@ function LinkUtils.promiseLinkValue(maid, linkName: string, from: Instance)
|
|
|
171
171
|
end)
|
|
172
172
|
end
|
|
173
173
|
|
|
174
|
-
return LinkUtils
|
|
174
|
+
return LinkUtils
|