@quenty/linkutils 13.17.4-canary.559.9f38947.0 → 13.18.0-canary.0a5db80.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 +2 -10
- package/package.json +8 -8
- package/src/Shared/LinkUtils.lua +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,20 +3,12 @@
|
|
|
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
|
+
# [13.18.0-canary.0a5db80.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/linkutils@13.17.2...@quenty/linkutils@13.18.0-canary.0a5db80.0) (2025-05-10)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
10
10
|
|
|
11
|
-
* Additional type checking updates ([
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
## [13.17.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/linkutils@13.17.2...@quenty/linkutils@13.17.3) (2025-04-10)
|
|
18
|
-
|
|
19
|
-
**Note:** Version bump only for package @quenty/linkutils
|
|
11
|
+
* Additional type checking updates ([7e008c5](https://github.com/Quenty/NevermoreEngine/commit/7e008c58547bd00b5904e56541454a38c8d72ccc))
|
|
20
12
|
|
|
21
13
|
|
|
22
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/linkutils",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.18.0-canary.0a5db80.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.
|
|
29
|
-
"@quenty/instanceutils": "13.
|
|
30
|
-
"@quenty/loader": "10.
|
|
31
|
-
"@quenty/maid": "3.
|
|
32
|
-
"@quenty/promise": "10.
|
|
33
|
-
"@quenty/rx": "13.
|
|
28
|
+
"@quenty/brio": "14.18.0-canary.0a5db80.0",
|
|
29
|
+
"@quenty/instanceutils": "13.18.0-canary.0a5db80.0",
|
|
30
|
+
"@quenty/loader": "10.9.0-canary.0a5db80.0",
|
|
31
|
+
"@quenty/maid": "3.5.0-canary.0a5db80.0",
|
|
32
|
+
"@quenty/promise": "10.11.0-canary.0a5db80.0",
|
|
33
|
+
"@quenty/rx": "13.18.0-canary.0a5db80.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "0a5db8004684dc3e76fd5944599a22602d48cfa9"
|
|
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 promiseChild = require("promiseChild")
|
|
10
9
|
local promisePropertyValue = require("promisePropertyValue")
|
|
10
|
+
local promiseChild = require("promiseChild")
|
|
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
|