@quenty/linkutils 13.5.0 → 13.5.1-canary.497.2df557a.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 +8 -0
- package/package.json +8 -8
- package/src/Shared/LinkUtils.lua +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.5.1-canary.497.2df557a.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/linkutils@13.5.0...@quenty/linkutils@13.5.1-canary.497.2df557a.0) (2024-09-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/linkutils
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [13.5.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/linkutils@13.4.0...@quenty/linkutils@13.5.0) (2024-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/linkutils
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/linkutils",
|
|
3
|
-
"version": "13.5.0",
|
|
3
|
+
"version": "13.5.1-canary.497.2df557a.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": "
|
|
29
|
-
"@quenty/instanceutils": "
|
|
30
|
-
"@quenty/loader": "
|
|
31
|
-
"@quenty/maid": "
|
|
32
|
-
"@quenty/promise": "
|
|
33
|
-
"@quenty/rx": "
|
|
28
|
+
"@quenty/brio": "14.5.1-canary.497.2df557a.0",
|
|
29
|
+
"@quenty/instanceutils": "13.5.1-canary.497.2df557a.0",
|
|
30
|
+
"@quenty/loader": "10.4.1-canary.497.2df557a.0",
|
|
31
|
+
"@quenty/maid": "3.3.0",
|
|
32
|
+
"@quenty/promise": "10.4.1-canary.497.2df557a.0",
|
|
33
|
+
"@quenty/rx": "13.5.1-canary.497.2df557a.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "2df557a9a5463c2c7beb257ff9f7786ac8ad746a"
|
|
39
39
|
}
|
package/src/Shared/LinkUtils.lua
CHANGED
|
@@ -136,8 +136,7 @@ function LinkUtils.getLinkValue(linkName, from)
|
|
|
136
136
|
end
|
|
137
137
|
|
|
138
138
|
if not objectValue:IsA("ObjectValue") then
|
|
139
|
-
warn(("[LinkUtils.getLinkValue] - Bad link %q not an object value, from %q")
|
|
140
|
-
:format(objectValue:GetFullName(), from:GetFullName()))
|
|
139
|
+
warn(string.format("[LinkUtils.getLinkValue] - Bad link %q not an object value, from %q", objectValue:GetFullName(), from:GetFullName()))
|
|
141
140
|
return nil
|
|
142
141
|
end
|
|
143
142
|
|